//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++98, c++03 // // void swap(unordered_map& c) // noexcept( // (!allocator_type::propagate_on_container_swap::value || // __is_nothrow_swappable::value) && // __is_nothrow_swappable::value && // __is_nothrow_swappable::value); // // In C++17, the standard says that swap shall have: // noexcept(allocator_traits::is_always_equal::value && // noexcept(swap(declval(), declval())) && // noexcept(swap(declval(), declval()))); // This tests a conforming extension #include #include #include #include "test_macros.h" #include "MoveOnly.h" #include "test_allocator.h" template struct some_comp { typedef T value_type; some_comp() {} some_comp(const some_comp&) {} bool operator()(const T&, const T&) const { return false; } }; template struct some_comp2 { typedef T value_type; some_comp2() {} some_comp2(const some_comp2&) {} bool operator()(const T&, const T&) const { return false; } }; #if TEST_STD_VER >= 14 template void swap(some_comp2&, some_comp2&) noexcept {} #endif template struct some_hash { typedef T value_type; some_hash() {} some_hash(const some_hash&); }; template struct some_hash2 { typedef T value_type; some_hash2() {} some_hash2(const some_hash2&); }; #if TEST_STD_VER >= 14 template void swap(some_hash2&, some_hash2&) noexcept {} #endif template struct some_alloc { typedef T value_type; some_alloc() {} some_alloc(const some_alloc&); void deallocate(void*, unsigned) {} typedef std::true_type propagate_on_container_swap; }; template struct some_alloc2 { typedef T value_type; some_alloc2() {} some_alloc2(const some_alloc2&); void deallocate(void*, unsigned) {} typedef std::false_type propagate_on_container_swap; typedef std::true_type is_always_equal; }; template struct some_alloc3 { typedef T value_type; some_alloc3() {} some_alloc3(const some_alloc3&); void deallocate(void*, unsigned) {} typedef std::false_type propagate_on_container_swap; typedef std::false_type is_always_equal; }; int main() { typedef std::pair MapType; { typedef std::unordered_map C; static_assert(noexcept(swap(std::declval(), std::declval())), ""); } { typedef std::unordered_map, std::equal_to, test_allocator> C; LIBCPP_STATIC_ASSERT(noexcept(swap(std::declval(), std::declval())), ""); } { typedef std::unordered_map, std::equal_to, other_allocator> C; LIBCPP_STATIC_ASSERT(noexcept(swap(std::declval(), std::declval())), ""); } { typedef std::unordered_map> C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { typedef std::unordered_map, some_comp> C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } #if TEST_STD_VER >= 14 { // POCS allocator, throwable swap for hash, throwable swap for comp typedef std::unordered_map, some_comp , some_alloc > C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { // always equal allocator, throwable swap for hash, throwable swap for comp typedef std::unordered_map, some_comp , some_alloc2> C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { // POCS allocator, throwable swap for hash, nothrow swap for comp typedef std::unordered_map, some_comp2, some_alloc > C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { // always equal allocator, throwable swap for hash, nothrow swap for comp typedef std::unordered_map, some_comp2, some_alloc2> C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { // POCS allocator, nothrow swap for hash, throwable swap for comp typedef std::unordered_map, some_comp , some_alloc > C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { // always equal allocator, nothrow swap for hash, throwable swap for comp typedef std::unordered_map, some_comp , some_alloc2> C; static_assert(!noexcept(swap(std::declval(), std::declval())), ""); } { // POCS allocator, nothrow swap for hash, nothrow swap for comp typedef std::unordered_map, some_comp2, some_alloc > C; static_assert( noexcept(swap(std::declval(), std::declval())), ""); } { // always equal allocator, nothrow swap for hash, nothrow swap for comp typedef std::unordered_map, some_comp2, some_alloc2> C; static_assert( noexcept(swap(std::declval(), std::declval())), ""); } { // NOT always equal allocator, nothrow swap for hash, nothrow swap for comp typedef std::unordered_map, some_comp2, some_alloc3> C; LIBCPP_STATIC_ASSERT( noexcept(swap(std::declval(), std::declval())), ""); } #endif }