//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03 // // template , class Pred = equal_to, // class Alloc = allocator> // class unordered_set // template // iterator emplace_hint(const_iterator p, Args&&... args); #include #include #include "test_macros.h" #include "../../Emplaceable.h" #include "min_allocator.h" int main(int, char**) { { typedef std::unordered_set C; typedef C::iterator R; C c; R r = c.emplace_hint(c.end()); assert(c.size() == 1); assert(*r == Emplaceable()); r = c.emplace_hint(c.end(), Emplaceable(5, 6)); assert(c.size() == 2); assert(*r == Emplaceable(5, 6)); r = c.emplace_hint(r, 5, 6); assert(c.size() == 2); assert(*r == Emplaceable(5, 6)); } { typedef std::unordered_set, std::equal_to, min_allocator> C; typedef C::iterator R; C c; R r = c.emplace_hint(c.end()); assert(c.size() == 1); assert(*r == Emplaceable()); r = c.emplace_hint(c.end(), Emplaceable(5, 6)); assert(c.size() == 2); assert(*r == Emplaceable(5, 6)); r = c.emplace_hint(r, 5, 6); assert(c.size() == 2); assert(*r == Emplaceable(5, 6)); } return 0; }