]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_container.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / unordered_map / requirements / debug_container.cc
CommitLineData
52066eae 1// { dg-do compile { target c++11 } }
e63637ea 2
7adcbafe 3// Copyright (C) 2007-2022 Free Software Foundation, Inc.
da45075d
PC
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
da45075d 9// any later version.
e63637ea 10
da45075d
PC
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
e63637ea 15
da45075d 16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
da45075d 19
e63637ea
BK
20#include <string>
21#include <debug/unordered_map>
da45075d 22
e63637ea
BK
23using std::allocator;
24using std::equal_to;
25using std::hash;
26using std::pair;
27using std::string;
da45075d 28
3a0f3672
JW
29template class __gnu_debug::unordered_map<string, float>;
30template class __gnu_debug::unordered_map<string, int,
31 hash<string>, equal_to<string>,
32 allocator<pair<const string, int>>>;
d561a18e 33#if !defined __STRICT_ANSI__ && __cplusplus <= 201703L
3a0f3672
JW
34template class __gnu_debug::unordered_map<string, float,
35 hash<string>, equal_to<string>,
36 allocator<char>>;
f8f39390 37#endif