Warning, file /include/boost/exception/detail/requires_cxx11.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_EXCEPTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
0002 #define BOOST_EXCEPTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
0003
0004
0005
0006
0007
0008
0009 #include <boost/config.hpp>
0010 #include <boost/config/pragma_message.hpp>
0011
0012 #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || \
0013 defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \
0014 defined(BOOST_NO_CXX11_DECLTYPE) || \
0015 defined(BOOST_NO_CXX11_CONSTEXPR) || \
0016 defined(BOOST_NO_CXX11_NOEXCEPT) || \
0017 defined(BOOST_NO_CXX11_NULLPTR) || \
0018 defined(BOOST_NO_CXX11_SMART_PTR)
0019
0020 BOOST_PRAGMA_MESSAGE("C++03 support was deprecated in Boost.Exception 1.85 and will be removed in Boost.Exception 1.87.")
0021
0022 #endif
0023
0024 #endif