Fixed compilation on Windows

This commit is contained in:
mbs 2024-02-08 10:47:43 +00:00 committed by jfa
parent d61331b252
commit de8926be4a
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
#if OCC_VERSION_LARGE < 0x07080000
#include <Standard_math.hxx> // E.A. must be included before Python.h to fix compilation on windows
#include <Standard_Real.hxx> // E.A. must be included before Python.h to fix compilation on windows
#else

View File

@ -24,7 +24,7 @@
// E.A. : On windows with python 2.6, there is a conflict
// E.A. : between pymath.h and Standard_math.h which define
// E.A. : some same symbols : acosh, asinh, ...
#include <Standard_math.hxx>
#include <Standard_Real.hxx>
#include <pymath.h>
#endif