From 0120dbfe6559ff03e549c53caf08c64e55678169 Mon Sep 17 00:00:00 2001 From: Daniel Richard G Date: Thu, 5 Oct 2023 20:26:24 -0400 Subject: [PATCH] Fix Intel compiler build --- include/boost/core/detail/sp_thread_pause.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/core/detail/sp_thread_pause.hpp b/include/boost/core/detail/sp_thread_pause.hpp index 01be1a0..8971fbd 100644 --- a/include/boost/core/detail/sp_thread_pause.hpp +++ b/include/boost/core/detail/sp_thread_pause.hpp @@ -20,7 +20,7 @@ #include #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 # endif #endif