From e969195f058cfa491dad3580797b1190224ef4b9 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 5 Apr 2024 22:59:40 -0600 Subject: [PATCH] Make sure MSVC does not pretend it is GCC. --- .../include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundled/boost-1.84.0/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp b/bundled/boost-1.84.0/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp index 2e15f7909e..e8848bec82 100644 --- a/bundled/boost-1.84.0/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp +++ b/bundled/boost-1.84.0/include/boost/smart_ptr/detail/sp_has_gcc_intrinsics.hpp @@ -18,7 +18,7 @@ // intrinsics are available. -#if defined( __ATOMIC_RELAXED ) && defined( __ATOMIC_ACQUIRE ) && defined( __ATOMIC_RELEASE ) && defined( __ATOMIC_ACQ_REL ) +#if defined( __ATOMIC_RELAXED ) && defined( __ATOMIC_ACQUIRE ) && defined( __ATOMIC_RELEASE ) && defined( __ATOMIC_ACQ_REL ) && !defined(_MSC_VER) # define BOOST_SP_HAS_GCC_INTRINSICS -- 2.39.5