mirror of
				https://github.com/boostorg/unordered.git
				synced 2025-11-04 01:31:41 +01: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