Commit 6fef4217 by Benjamin Kosnik Committed by Benjamin Kosnik

locale_facets.tcc: Fix typo.


2003-03-08  Benjamin Kosnik  <bkoz@redhat.com>

	* include/bits/locale_facets.tcc: Fix typo.

From-SVN: r63976
parent 85c39c6d
2003-03-08 Benjamin Kosnik <bkoz@redhat.com>
* include/bits/locale_facets.tcc: Fix typo.
2003-03-08 Loren J. Rittle <ljrittle@acm.org>
* config/locale/generic/c_locale.cc (locale::facet::_S_create_c_locale):
......
......@@ -979,9 +979,9 @@ namespace std
typedef basic_string<_CharT> __string_type;
__string_type __name;
if (__v)
__name = __lc.truename();
__name = __lc._M_truename;
else
__name = __lc.falsename();
__name = __lc._M_falsename;
const _CharT* __cs = __name.c_str();
int __len = __name.size();
......
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