]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/tr1/6_containers/hash/requirements/explicit_instantiation.cc
[multiple changes]
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / hash / requirements / explicit_instantiation.cc
1 // { dg-do compile }
2
3 // 2005-02-17 Matt Austern <austern@apple.com>
4 //
5 // Copyright (C) 2005 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 2, or (at your option)
11 // any later version.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING. If not, write to the Free
20 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21 // USA.
22
23 // 6.3.3 class template hash
24
25 #include <string>
26 #include <tr1/functional>
27
28 using namespace std::tr1;
29
30 // Verify that we can instantiate hash for every required type.
31 template class hash<bool>;
32 template class hash<char>;
33 template class hash<signed char>;
34 template class hash<unsigned char>;
35 template class hash<short>;
36 template class hash<int>;
37 template class hash<long>;
38 template class hash<unsigned short>;
39 template class hash<unsigned int>;
40 template class hash<unsigned long>;
41 template class hash<float>;
42 template class hash<double>;
43 template class hash<long double>;
44 template class hash<void*>;
45 template class hash<std::string>;
46
47 #ifdef _GLIBCXX_USE_WCHAR_T
48 template class hash<wchar_t>;
49 template class hash<std::wstring>;
50 #endif
51