1#ifndef BOOST_EXCEPTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
2#define BOOST_EXCEPTION_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
3
4// Copyright 2023 Peter Dimov
5// Copyright 2024 Emil Dotchevski
6// Distributed under the Boost Software License, Version 1.0.
7// https://www.boost.org/LICENSE_1_0.txt
8
9#include <boost/config.hpp>
10#include <boost/config/pragma_message.hpp>
11
12#if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || \
13 defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \
14 defined(BOOST_NO_CXX11_DECLTYPE) || \
15 defined(BOOST_NO_CXX11_CONSTEXPR) || \
16 defined(BOOST_NO_CXX11_NOEXCEPT) || \
17 defined(BOOST_NO_CXX11_NULLPTR) || \
18 defined(BOOST_NO_CXX11_SMART_PTR)
19
20BOOST_PRAGMA_MESSAGE("C++03 support was deprecated in Boost.Exception 1.85 and will be removed in Boost.Exception 1.87.")
21
22#endif
23
24#endif

source code of boost/libs/exception/include/boost/exception/detail/requires_cxx11.hpp