mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-10 17:37:14 +00:00
Disable erroneous compiler warning in space_depth_ops.cc
This commit is contained in:
parent
971b98f9a5
commit
c2a01b9431
1 changed files with 5 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue