forked from boostorg/unordered
Remove BOOST_CONSTEXPR
This commit is contained in:
@ -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);
|
||||
|
@ -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()
|
||||
{
|
||||
|
@ -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()
|
||||
{
|
||||
|
Reference in New Issue
Block a user