forked from boostorg/smart_ptr
Merge pull request #31 from gongminmin/ClangC2
Fix compiling problems under ClangC2.
This commit is contained in:
@ -20,7 +20,7 @@
|
|||||||
#include <boost/config.hpp>
|
#include <boost/config.hpp>
|
||||||
#include <boost/smart_ptr/detail/sp_has_sync.hpp>
|
#include <boost/smart_ptr/detail/sp_has_sync.hpp>
|
||||||
|
|
||||||
#if defined( __clang__ ) && defined( __has_extension )
|
#if !defined( __c2__ ) && defined( __clang__ ) && defined( __has_extension )
|
||||||
# if __has_extension( __c_atomic__ )
|
# if __has_extension( __c_atomic__ )
|
||||||
# define BOOST_SP_HAS_CLANG_C11_ATOMICS
|
# define BOOST_SP_HAS_CLANG_C11_ATOMICS
|
||||||
# endif
|
# endif
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#ifndef BOOST_SP_NO_SYNC
|
#ifndef BOOST_SP_NO_SYNC
|
||||||
|
|
||||||
#if defined( __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 )
|
#if !defined( __c2__ ) && defined( __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 )
|
||||||
|
|
||||||
# define BOOST_SP_HAS_SYNC
|
# define BOOST_SP_HAS_SYNC
|
||||||
|
|
||||||
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
# define BOOST_SP_HAS_SYNC
|
# define BOOST_SP_HAS_SYNC
|
||||||
|
|
||||||
#elif defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 )
|
#elif !defined( __c2__ ) && defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 401 )
|
||||||
|
|
||||||
#define BOOST_SP_HAS_SYNC
|
#define BOOST_SP_HAS_SYNC
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user