48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
|
//===----------------------------------------------------------------------===//
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
|
|||
|
//
|
|||
|
// This file is distributed under the University of Illinois Open Source
|
|||
|
// License. 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()
|
|||
|
{
|
|||
|
#ifdef _LIBCPP_MOVE
|
|||
|
{
|
|||
|
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
|
|||
|
}
|