Commit eef5c0ca by Paolo Carlini Committed by Paolo Carlini

functions.cc: Fix.

2006-02-04  Paolo Carlini  <pcarlini@suse.de>

	* testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Fix.

From-SVN: r110588
parent 5622277d
2006-02-04 Paolo Carlini <pcarlini@suse.de> 2006-02-04 Paolo Carlini <pcarlini@suse.de>
* testsuite/tr1/8_c_compatibility/cwchar/functions.cc: Fix.
2006-02-04 Paolo Carlini <pcarlini@suse.de>
* testsuite/27_io/basic_stringbuf/in_avail/char/21955.cc: Avoid * testsuite/27_io/basic_stringbuf/in_avail/char/21955.cc: Avoid
warning on string constant. warning on string constant.
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
#if _GLIBCXX_USE_WCHAR_T #if _GLIBCXX_USE_WCHAR_T
void test01() void test01(int dummy, ...)
{ {
#if _GLIBCXX_USE_C99_WCHAR_TR1 #if _GLIBCXX_USE_C99_WCHAR_TR1
...@@ -37,7 +37,8 @@ void test01() ...@@ -37,7 +37,8 @@ void test01()
const wchar_t* s = 0; const wchar_t* s = 0;
wchar_t** endptr = 0; wchar_t** endptr = 0;
FILE* stream = 0; FILE* stream = 0;
std::va_list arg = 0; std::va_list arg;
va_start(arg, dummy);
float fret; float fret;
long double ldret; long double ldret;
......
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