diff --git a/onnxruntime/core/providers/cpu/tensor/space_depth_ops.cc b/onnxruntime/core/providers/cpu/tensor/space_depth_ops.cc index da560f8929..0d51dec34b 100644 --- a/onnxruntime/core/providers/cpu/tensor/space_depth_ops.cc +++ b/onnxruntime/core/providers/cpu/tensor/space_depth_ops.cc @@ -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