Disable erroneous compiler warning in space_depth_ops.cc

This commit is contained in:
Jeff Bloomfield 2020-04-21 01:40:12 -07:00
parent 971b98f9a5
commit c2a01b9431

View file

@ -1,6 +1,11 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// TODO: x86 release builds produce warning C4723: potential divide by 0
#ifdef _MSC_VER
#pragma warning(disable : 4723)
#endif
#include "core/providers/cpu/tensor/space_depth_ops.h"
#include "core/util/eigen_common_wrapper.h"
#include <array>