mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-29 10:57:16 +02:00
reverted
This commit is contained in:
@ -1114,12 +1114,12 @@ public:
|
||||
typename std::enable_if<
|
||||
std::is_constructible<value_type,T&&>::value>* =nullptr
|
||||
>
|
||||
/*BOOST_FORCEINLINE*/ std::pair<iterator,bool> insert(T&& x)
|
||||
BOOST_FORCEINLINE std::pair<iterator,bool> insert(T&& x)
|
||||
{
|
||||
return emplace_impl(value_from(std::forward<T>(x)));
|
||||
}
|
||||
|
||||
/*BOOST_FORCEINLINE*/ std::pair<iterator,bool> insert(init_type&& x)
|
||||
BOOST_FORCEINLINE std::pair<iterator,bool> insert(init_type&& x)
|
||||
{
|
||||
return emplace_impl(std::move(x));
|
||||
}
|
||||
|
Reference in New Issue
Block a user