mirror of git://gcc.gnu.org/git/gcc.git
revert accidential change in revision 128957.
From-SVN: r128976
This commit is contained in:
parent
855ea443d8
commit
ed1345e8a3
|
|
@ -46,25 +46,25 @@ template<typename T>
|
||||||
|
|
||||||
void test01()
|
void test01()
|
||||||
{
|
{
|
||||||
// do_test<bool>();
|
do_test<bool>();
|
||||||
// do_test<char>();
|
do_test<char>();
|
||||||
// do_test<signed char>();
|
do_test<signed char>();
|
||||||
// do_test<unsigned char>();
|
do_test<unsigned char>();
|
||||||
// do_test<short>();
|
do_test<short>();
|
||||||
// do_test<int>();
|
do_test<int>();
|
||||||
// do_test<long>();
|
do_test<long>();
|
||||||
// do_test<unsigned short>();
|
do_test<unsigned short>();
|
||||||
// do_test<unsigned int>();
|
do_test<unsigned int>();
|
||||||
// do_test<unsigned long>();
|
do_test<unsigned long>();
|
||||||
// do_test<int*>();
|
do_test<int*>();
|
||||||
// do_test<std::string>();
|
do_test<std::string>();
|
||||||
// do_test<float>();
|
do_test<float>();
|
||||||
// do_test<double>();
|
do_test<double>();
|
||||||
do_test<long double>();
|
do_test<long double>();
|
||||||
|
|
||||||
#ifdef _GLIBCXX_USE_WCHAR_T
|
#ifdef _GLIBCXX_USE_WCHAR_T
|
||||||
// do_test<wchar_t>();
|
do_test<wchar_t>();
|
||||||
// do_test<std::wstring>();
|
do_test<std::wstring>();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue