Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:30:54

0001 #ifndef BOOST_FUNCTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
0002 #define BOOST_FUNCTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
0003 
0004 // Copyright 2023 Peter Dimov
0005 // Distributed under the Boost Software License, Version 1.0.
0006 // https://www.boost.org/LICENSE_1_0.txt
0007 
0008 #include <boost/config.hpp>
0009 #include <boost/config/pragma_message.hpp>
0010 
0011 #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || \
0012     defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \
0013     defined(BOOST_NO_CXX11_DECLTYPE) || \
0014     defined(BOOST_NO_CXX11_CONSTEXPR) || \
0015     defined(BOOST_NO_CXX11_NOEXCEPT) || \
0016     defined(BOOST_NO_CXX11_HDR_FUNCTIONAL)
0017 
0018 BOOST_PRAGMA_MESSAGE("C++03 support was deprecated in Boost.Function 1.82 and will be removed in Boost.Function 1.85.")
0019 
0020 #endif
0021 
0022 #endif // #ifndef BOOST_FUNCTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED