1 // Copyright (C) 2012-2025 Free Software Foundation, Inc.
3 // This file is part of the GNU ISO C++ Library. This library is free
4 // software; you can redistribute it and/or modify it under the
5 // terms of the GNU General Public License as published by the
6 // Free Software Foundation; either version 3, or (at your option)
9 // This library is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License along
15 // with this library; see the file COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
19 // { dg-do run { target c++11 } }
22 #include <unordered_map>
23 #include <testsuite_hooks.h>
28 static std::set
<const A
*> destroyed
;
31 { destroyed
.erase(this); }
35 { destroyed
.erase(this); }
38 { destroyed
.insert(this); }
41 operator==(const A
& other
) const
43 VERIFY( destroyed
.find(this) == destroyed
.end() );
44 VERIFY( destroyed
.find(&other
) == destroyed
.end() );
49 std::set
<const A
*> A::destroyed
;
53 std::size_t operator()(const A
& a
) const
55 VERIFY( A::destroyed
.find(&a
) == A::destroyed
.end() );
62 typedef std::unordered_map
<A
, A
, hasher
> UMap
;
71 VERIFY( map
.size() == 2 );
72 std::size_t bkt
= map
.bucket(a
);
73 VERIFY( map
.bucket_size(bkt
) == 2 );
75 VERIFY( map
.erase( map
.begin(bkt
)->first
) == 1 );
80 typedef std::unordered_map
<A
, A
, hasher
> UMap
;
89 VERIFY( map
.size() == 2 );
90 std::size_t bkt
= map
.bucket(a
);
91 VERIFY( map
.bucket_size(bkt
) == 2 );
93 VERIFY( map
.erase( map
.begin(bkt
)->second
) == 1 );