Back to home page

EIC code displayed by LXR

 
 

    


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 // MS compatible compilers support #pragma once
0005 
0006 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
0007 # pragma once
0008 #endif
0009 
0010 
0011 // boost/smart_ptr/detail/sp_obsolete.hpp
0012 //
0013 // Copyright 2020 Peter Dimov
0014 // Distributed under the Boost Software License, Version 1.0.
0015 // https://www.boost.org/LICENSE_1_0.txt
0016 //
0017 // Defines the BOOST_SP_OBSOLETE macro that emits a deprecation
0018 // message.
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 // #ifndef BOOST_SMART_PTR_DETAIL_SP_OBSOLETE_HPP_INCLUDED