mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 19:37:14 +02:00
reverted
This commit is contained in:
@ -1114,12 +1114,12 @@ public:
|
|||||||
typename std::enable_if<
|
typename std::enable_if<
|
||||||
std::is_constructible<value_type,T&&>::value>* =nullptr
|
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)));
|
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));
|
return emplace_impl(std::move(x));
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user