Remove BOOST_CONSTEXPR

This commit is contained in:
Christian Mazakas
2023-08-28 12:48:03 -07:00
parent 0c90a84aa0
commit 11322de29f
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ namespace unordered{
namespace detail{
template<typename To,typename From>
BOOST_CONSTEXPR To narrow_cast(From x) noexcept
constexpr To narrow_cast(From x) noexcept
{
BOOST_STATIC_ASSERT(boost::is_integral<From>::value);
BOOST_STATIC_ASSERT(boost::is_integral<To>::value);

View File

@ -2894,7 +2894,7 @@ namespace boost {
}
public:
BOOST_CONSTEXPR node_handle_map() noexcept : ptr_(), alloc_() {}
constexpr node_handle_map() noexcept : ptr_(), alloc_() {}
~node_handle_map()
{

View File

@ -2251,7 +2251,7 @@ namespace boost {
}
public:
BOOST_CONSTEXPR node_handle_set() noexcept : ptr_(), has_alloc_(false) {}
constexpr node_handle_set() noexcept : ptr_(), has_alloc_(false) {}
~node_handle_set()
{