OSDN Git Service

2007-02-22 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / unordered_map / requirements / explicit_instantiation.cc
index 41ce95d..8fb0b9f 100644 (file)
@@ -2,7 +2,7 @@
 
 // 2005-02-17  Matt Austern  <austern@apple.com>
 //
-// Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
+// Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
 //
 // This file is part of the GNU ISO C++ Library.  This library is free
 // software; you can redistribute it and/or modify it under the
@@ -29,9 +29,12 @@ using namespace std;
 using namespace std::tr1;
 
 template class unordered_map<string, float>;
-template class unordered_map<string, float,
+template class unordered_map<string, int,
                             hash<string>, equal_to<string>, 
-                            allocator<pair<const string, float> >, true>;
+                            allocator<pair<const string, int> > >;
 template class unordered_map<string, float,
                             hash<string>, equal_to<string>, 
-                            allocator<char>, false>;
+                            allocator<char> >;
+template class __unordered_map<string, int,
+                              hash<string>, equal_to<string>, 
+                              allocator<pair<const string, int> >, true>;