mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-02 16:51:39 +01:00
reverted two prior
This commit is contained in:
@@ -1112,9 +1112,9 @@ public:
|
||||
return emplace_impl(value_from(std::forward<T>(x)));
|
||||
}
|
||||
|
||||
/*BOOST_FORCEINLINE*/ std::pair<iterator,bool> insert(value_type&& x)
|
||||
BOOST_FORCEINLINE std::pair<iterator,bool> insert(init_type&& x)
|
||||
{
|
||||
return emplace_impl(value_from(std::move(x)));
|
||||
return emplace_impl(std::move(x));
|
||||
}
|
||||
|
||||
template<
|
||||
|
||||
Reference in New Issue
Block a user