diff options
author | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2007-10-03 01:31:47 +0000 |
---|---|---|
committer | Kenneth Zadeck <zadeck@gcc.gnu.org> | 2007-10-03 01:31:47 +0000 |
commit | ed1345e8a3de21e34a23231c6896d96c94163ad5 (patch) | |
tree | 9930902d0eed33ead50577192db50d1f9503a566 | |
parent | 855ea443d876111d365ceb58789d10874508a135 (diff) | |
download | gcc-ed1345e8a3de21e34a23231c6896d96c94163ad5.zip gcc-ed1345e8a3de21e34a23231c6896d96c94163ad5.tar.gz gcc-ed1345e8a3de21e34a23231c6896d96c94163ad5.tar.bz2 |
revert accidential change in revision 128957.
From-SVN: r128976
-rw-r--r-- | libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc b/libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc index 3669a95..067a9f5 100644 --- a/libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc +++ b/libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc @@ -46,25 +46,25 @@ template<typename T> void test01() { - // do_test<bool>(); - // do_test<char>(); - // do_test<signed char>(); - // do_test<unsigned char>(); - // do_test<short>(); - // do_test<int>(); - // do_test<long>(); - // do_test<unsigned short>(); - // do_test<unsigned int>(); - // do_test<unsigned long>(); - // do_test<int*>(); - // do_test<std::string>(); - // do_test<float>(); - // do_test<double>(); + do_test<bool>(); + do_test<char>(); + do_test<signed char>(); + do_test<unsigned char>(); + do_test<short>(); + do_test<int>(); + do_test<long>(); + do_test<unsigned short>(); + do_test<unsigned int>(); + do_test<unsigned long>(); + do_test<int*>(); + do_test<std::string>(); + do_test<float>(); + do_test<double>(); do_test<long double>(); #ifdef _GLIBCXX_USE_WCHAR_T - // do_test<wchar_t>(); - // do_test<std::wstring>(); + do_test<wchar_t>(); + do_test<std::wstring>(); #endif } |