Warning, file /include/boost/smart_ptr/detail/sp_disable_deprecated.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef BOOST_SMART_PTR_DETAIL_SP_DISABLE_DEPRECATED_HPP_INCLUDED
0002 #define BOOST_SMART_PTR_DETAIL_SP_DISABLE_DEPRECATED_HPP_INCLUDED
0003
0004
0005
0006 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
0007 # pragma once
0008 #endif
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020 #include <boost/config.hpp>
0021
0022 #if defined( __GNUC__ ) && ( defined( __GXX_EXPERIMENTAL_CXX0X__ ) || ( __cplusplus >= 201103L ) )
0023
0024 # if defined( BOOST_GCC )
0025
0026 # if BOOST_GCC >= 40600
0027 # define BOOST_SP_DISABLE_DEPRECATED
0028 # endif
0029
0030 # elif defined( __clang__ ) && defined( __has_warning )
0031
0032 # if __has_warning( "-Wdeprecated-declarations" )
0033 # define BOOST_SP_DISABLE_DEPRECATED
0034 # endif
0035
0036 # endif
0037
0038 #endif
0039
0040 #endif