Commit ac912ba1 by Paolo Carlini Committed by Paolo Carlini

13171-3.cc: Remove extraneous wchar_t lines.

2003-11-28  Paolo Carlini  <pcarlini@suse.de>

	* testsuite/27_io/basic_filebuf/imbue/char/13171-3.cc:
	Remove extraneous wchar_t lines.

From-SVN: r74016
parent 8207738d
2003-11-28 Paolo Carlini <pcarlini@suse.de>
* testsuite/27_io/basic_filebuf/imbue/char/13171-3.cc:
Remove extraneous wchar_t lines.
2003-11-27 Paolo Carlini <pcarlini@suse.de> 2003-11-27 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/11544 PR libstdc++/11544
......
...@@ -37,17 +37,10 @@ void test01() ...@@ -37,17 +37,10 @@ void test01()
cout.imbue(locale("en_US")); cout.imbue(locale("en_US"));
cerr.imbue(locale("en_US")); cerr.imbue(locale("en_US"));
clog.imbue(locale("de_DE")); clog.imbue(locale("de_DE"));
wcin.imbue(locale("en_US"));
wcout.imbue(locale("en_US"));
wcerr.imbue(locale("en_US"));
wclog.imbue(locale("de_DE"));
cout << 'f' << endl; cout << 'f' << endl;
cerr << 'r' << endl; cerr << 'r' << endl;
clog << 'A' << endl; clog << 'A' << endl;
wcout << L's' << endl;
wcerr << L'i' << endl;
wclog << L'L' << endl;
} }
int main() int main()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment