Skip to content

Commit

Permalink
Make sure MSVC does not pretend it is GCC.
Browse files Browse the repository at this point in the history
  • Loading branch information
bangerth committed Apr 6, 2024
1 parent 70a1033 commit 30ea0dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 30ea0dd

Please sign in to comment.