1//-----------------------------------------------------------------------------
2// boost variant/detail/config.hpp header file
3// See http://www.boost.org for updates, documentation, and revision history.
4//-----------------------------------------------------------------------------
5//
6// Copyright (c) 2003 Eric Friedman
7// Copyright (c) 2016-2023 Antony Polukhin
8//
9// Distributed under the Boost Software License, Version 1.0. (See
10// accompanying file LICENSE_1_0.txt or copy at
11// http://www.boost.org/LICENSE_1_0.txt)
12
13#ifndef BOOST_VARIANT_DETAIL_CONFIG_HPP
14#define BOOST_VARIANT_DETAIL_CONFIG_HPP
15
16#include <boost/config.hpp>
17#include <boost/detail/workaround.hpp>
18
19#include <boost/config/pragma_message.hpp>
20#if defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \
21 defined(BOOST_NO_CXX11_AUTO_DECLARATIONS) || \
22 defined(BOOST_NO_CXX11_CONSTEXPR) || \
23 defined(BOOST_NO_CXX11_NULLPTR) || \
24 defined(BOOST_NO_CXX11_NOEXCEPT) || \
25 defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) || \
26 defined(BOOST_NO_CXX11_FINAL) || \
27 defined(BOOST_NO_CXX11_ALIGNOF) || \
28 defined(BOOST_NO_CXX11_STATIC_ASSERT) || \
29 defined(BOOST_NO_CXX11_SMART_PTR) || \
30 defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST) || \
31 defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
32
33BOOST_PRAGMA_MESSAGE("C++03 support is deprecated in Boost.Variant 1.82 and will be removed in Boost.Variant 1.84.")
34
35#endif
36
37#endif // BOOST_VARIANT_DETAIL_CONFIG_HPP
38