git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@119395 91177308-0d34-0410-b5e6-96231b3b80d8
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
//===----------------------------------------------------------------------===//
 | 
						|
//
 | 
						|
//                     The LLVM Compiler Infrastructure
 | 
						|
//
 | 
						|
// This file is dual licensed under the MIT and the University of Illinois Open
 | 
						|
// Source Licenses. See LICENSE.TXT for details.
 | 
						|
//
 | 
						|
//===----------------------------------------------------------------------===//
 | 
						|
 | 
						|
// <unordered_set>
 | 
						|
 | 
						|
// template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
 | 
						|
//           class Alloc = allocator<Value>>
 | 
						|
// class unordered_set
 | 
						|
 | 
						|
// template <class... Args>
 | 
						|
//     pair<iterator, bool> emplace(Args&&... args);
 | 
						|
 | 
						|
#include <unordered_set>
 | 
						|
#include <cassert>
 | 
						|
 | 
						|
#include "../../Emplaceable.h"
 | 
						|
 | 
						|
int main()
 | 
						|
{
 | 
						|
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
 | 
						|
    {
 | 
						|
        typedef std::unordered_set<Emplaceable> C;
 | 
						|
        typedef std::pair<C::iterator, bool> R;
 | 
						|
        C c;
 | 
						|
        R r = c.emplace();
 | 
						|
        assert(c.size() == 1);
 | 
						|
        assert(*r.first == Emplaceable());
 | 
						|
        assert(r.second);
 | 
						|
 | 
						|
        r = c.emplace(Emplaceable(5, 6));
 | 
						|
        assert(c.size() == 2);
 | 
						|
        assert(*r.first == Emplaceable(5, 6));
 | 
						|
        assert(r.second);
 | 
						|
 | 
						|
        r = c.emplace(5, 6);
 | 
						|
        assert(c.size() == 2);
 | 
						|
        assert(*r.first == Emplaceable(5, 6));
 | 
						|
        assert(!r.second);
 | 
						|
    }
 | 
						|
#endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
 | 
						|
}
 |