1#ifndef BOOST_UNORDERED_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
2#define BOOST_UNORDERED_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_VARIADIC_TEMPLATES) || \
12 defined(BOOST_NO_CXX11_RVALUE_REFERENCES) || \
13 defined(BOOST_NO_CXX11_DECLTYPE) || \
14 defined(BOOST_NO_CXX11_CONSTEXPR) || \
15 defined(BOOST_NO_CXX11_NOEXCEPT)
16
17BOOST_PRAGMA_MESSAGE("C++03 support is deprecated in Boost.Unordered 1.82 and will be removed in Boost.Unordered 1.84.")
18
19#endif
20
21#endif // #ifndef BOOST_UNORDERED_DETAIL_REQUIRES_CXX11_HPP_INCLUDED
22