Merge pull request #158 from iskunk/feature/fix-intel-build

Fix Intel compiler build
This commit is contained in:
Peter Dimov 2023-10-06 04:21:16 +03:00 committed by GitHub
commit 31a2f7fb6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@
#include <boost/config.hpp> #include <boost/config.hpp>
#if defined(__has_builtin) #if defined(__has_builtin)
# if __has_builtin(__builtin_ia32_pause) && !defined(_INTEL_COMPILER) # if __has_builtin(__builtin_ia32_pause) && !defined(__INTEL_COMPILER)
# define BOOST_CORE_HAS_BUILTIN_IA32_PAUSE # define BOOST_CORE_HAS_BUILTIN_IA32_PAUSE
# endif # endif
#endif #endif