| 1 | #ifndef BOOST_TYPEOF_DETAIL_REQUIRES_CXX11_HPP_INCLUDED |
| 2 | #define BOOST_TYPEOF_DETAIL_REQUIRES_CXX11_HPP_INCLUDED |
| 3 | |
| 4 | // Copyright 2023 Peter Dimov |
| 5 | // Distributed under the Boost Software License, Version 1.0. |
| 6 | // https://www.boost.org/LICENSE_1_0.txt |
| 7 | |
| 8 | #include <boost/config.hpp> |
| 9 | #include <boost/config/pragma_message.hpp> |
| 10 | |
| 11 | #if defined(BOOST_NO_CXX11_DECLTYPE) || \ |
| 12 | defined(BOOST_NO_CXX11_TEMPLATE_ALIASES) |
| 13 | |
| 14 | BOOST_PRAGMA_MESSAGE("C++03 support was deprecated in Boost.Typeof 1.82 and will be removed in Boost.Typeof 1.84." ) |
| 15 | |
| 16 | #endif |
| 17 | |
| 18 | #endif // #ifndef BOOST_TYPEOF_DETAIL_REQUIRES_CXX11_HPP_INCLUDED |
| 19 | |