File indexing completed on 2025-07-01 08:33:09
0001
0002
0003
0004
0005 #ifndef BOOST_UNORDERED_DETAIL_THROW_EXCEPTION_HPP
0006 #define BOOST_UNORDERED_DETAIL_THROW_EXCEPTION_HPP
0007
0008 #include <boost/config.hpp>
0009 #if defined(BOOST_HAS_PRAGMA_ONCE)
0010 #pragma once
0011 #endif
0012
0013 #include <boost/throw_exception.hpp>
0014 #include <stdexcept>
0015
0016 namespace boost {
0017 namespace unordered {
0018 namespace detail {
0019
0020 BOOST_NOINLINE BOOST_NORETURN inline void throw_out_of_range(
0021 char const* message)
0022 {
0023 boost::throw_exception(std::out_of_range(message));
0024 }
0025
0026 }
0027 }
0028 }
0029
0030 #endif