Skip to content

Commit

Permalink
CI fix: windows debug build with pybind (#5102)
Browse files Browse the repository at this point in the history
  • Loading branch information
yxlao committed May 17, 2022
1 parent c9035ec commit fc06aab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/pybind/open3d_pybind.h
Expand Up @@ -35,8 +35,9 @@
// alters how the _STL_ASSERT macro is defined and causes the build to fail.
//
// see https://github.com/microsoft/onnxruntime/issues/9735
// https://github.com/microsoft/onnxruntime/pull/11495
//
#if defined(_MSC_VER) && defined(_DEBUG) && _MSC_VER >= 1930
#if defined(_MSC_FULL_VER) && defined(_DEBUG) && _MSC_FULL_VER >= 192930145
#include <corecrt.h>
#endif

Expand Down

0 comments on commit fc06aab

Please sign in to comment.