vstring.h (to_wstring(long long), [...]): Disable for _GLIBCXX_HAVE_BROKEN_VSWPRINTF.

* include/ext/vstring.h (to_wstring(long long),
	to_wstring(unsigned long long), to_wstring(long double)): Disable
	for _GLIBCXX_HAVE_BROKEN_VSWPRINTF.

From-SVN: r151824
This commit is contained in:
Joseph Myers 2009-09-18 00:53:28 +01:00 committed by Joseph Myers
parent 66be89f022
commit e10822c2dc
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2009-09-17 Joseph Myers <joseph@codesourcery.com>
* include/ext/vstring.h (to_wstring(long long),
to_wstring(unsigned long long), to_wstring(long double)): Disable
for _GLIBCXX_HAVE_BROKEN_VSWPRINTF.
2009-09-17 Johannes Singler <singler@ira.uka.de> 2009-09-17 Johannes Singler <singler@ira.uka.de>
* include/parallel/algobase.h: Replace tabs by spaces; * include/parallel/algobase.h: Replace tabs by spaces;

View File

@ -2523,6 +2523,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
stold(const __wvstring& __str, std::size_t* __idx = 0) stold(const __wvstring& __str, std::size_t* __idx = 0)
{ return __gnu_cxx::__stoa(&std::wcstold, "stold", __str.c_str(), __idx); } { return __gnu_cxx::__stoa(&std::wcstold, "stold", __str.c_str(), __idx); }
#ifndef _GLIBCXX_HAVE_BROKEN_VSWPRINTF
inline __wvstring inline __wvstring
to_wstring(long long __val) to_wstring(long long __val)
{ return __gnu_cxx::__to_xstring<__wvstring>(&std::vswprintf, { return __gnu_cxx::__to_xstring<__wvstring>(&std::vswprintf,
@ -2543,6 +2544,7 @@ _GLIBCXX_BEGIN_NAMESPACE(__gnu_cxx)
L"%Lf", __val); L"%Lf", __val);
} }
#endif #endif
#endif
_GLIBCXX_END_NAMESPACE _GLIBCXX_END_NAMESPACE