diff options
author | Shauren <shauren.trinity@gmail.com> | 2021-12-08 19:02:59 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-08 19:02:59 +0100 |
commit | a93776728987e3ffa220e8fe5be73a34c5e3f965 (patch) | |
tree | a5d5ca3131287262045ec7c2f8650c42297f7f66 | |
parent | df2d0f3670dcaa06ec0289631fbf2a582a8b69b1 (diff) |
Core/Misc: Exclude boost 1.78 and newer from boost_1_73_process_windows_nopch hack
-rw-r--r-- | src/common/Hacks/boost_1_73_process_windows_nopch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Hacks/boost_1_73_process_windows_nopch.h b/src/common/Hacks/boost_1_73_process_windows_nopch.h index 7d5bcec3d68..aef7183dd82 100644 --- a/src/common/Hacks/boost_1_73_process_windows_nopch.h +++ b/src/common/Hacks/boost_1_73_process_windows_nopch.h @@ -21,7 +21,7 @@ #include "CompilerDefs.h" #include <boost/version.hpp> -#if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS && BOOST_VERSION >= 107300 +#if TRINITY_PLATFORM == TRINITY_PLATFORM_WINDOWS && BOOST_VERSION >= 107300 && BOOST_VERSION < 107800 // __kernel_entry for boost/process/detail/windows/handle_workaround.hpp // DWORD for boost/process/detail/windows/handles.hpp #include <windows.h> |