Commit 00424999 by Benjamin Kosnik Committed by Benjamin Kosnik

locale_facets.tcc (num_get::do_get(long double)): Fix __traits_type typo.


2001-11-29  Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/locale_facets.tcc (num_get::do_get(long double)):
	Fix __traits_type typo.

From-SVN: r47449
parent 816a3974
2001-11-29 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/locale_facets.tcc (num_get::do_get(long double)):
Fix __traits_type typo.
2001-11-28 Paolo Carlini <pcarlini@unitus.it>
libstdc++/3655
......
......@@ -647,11 +647,11 @@ namespace std
__conv = "%Lf";
// Stage 3: store results.
typedef typename __traits_type::int_type int_type;
typedef typename char_traits<_CharT>::int_type int_type;
long double __ld;
int __p = sscanf(__xtrc, __conv, &__ld);
if (!(__err & ios_base::failbit) && __p
&& static_cast<int_type>(__p) != __traits_type::eof())
&& static_cast<int_type>(__p) != char_traits<_CharT>::eof())
__v = __ld;
#endif
else
......
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