Merge from mainline
[official-gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered / instantiate / hash.cc
blob382d69f715c43deaf2c9eb9e64e1f1e6849ad8a6
1 // { dg-do compile }
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.
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.
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.
23 // 6.3.3 class template hash
25 #include <string>
26 #include <tr1/functional>
28 using namespace std::tr1;
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>;
47 #ifdef _GLIBCXX_USE_WCHAR_T
48 template class hash<wchar_t>;
49 template class hash<std::wstring>;
50 #endif