File indexing completed on 2025-01-18 09:51:43
0001 #ifndef BOOST_SMART_PTR_DETAIL_SP_OBSOLETE_HPP_INCLUDED
0002 #define BOOST_SMART_PTR_DETAIL_SP_OBSOLETE_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/pragma_message.hpp>
0021
0022 #if !defined( BOOST_SP_NO_OBSOLETE_MESSAGE )
0023
0024 #define BOOST_SP_OBSOLETE() BOOST_PRAGMA_MESSAGE("This platform-specific implementation is presumed obsolete and is slated for removal. If you want it retained, please open an issue in https://github.com/boostorg/smart_ptr.")
0025
0026 #else
0027
0028 #define BOOST_SP_OBSOLETE()
0029
0030 #endif
0031
0032 #endif