This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
minor comment patch
- From: Jerry Quinn <jlquinn at optonline dot net>
- To: libstdc++ at gcc dot gnu dot org
- Date: Wed, 12 Feb 2003 23:04:08 -0500
- Subject: minor comment patch
The _S_atoms_out array contains number symbols before they've been widened,
not after.
2002-02-12 Jerry Quinn <jlquinn@optonline.net>
* include/bits/locale_facets.h (_S_atoms_out): Fix comment.
diff -c -u -r1.55 locale_facets.h
--- locale_facets.h 11 Feb 2003 21:55:48 -0000 1.55
+++ locale_facets.h 13 Feb 2003 04:05:02 -0000
@@ -547,10 +547,10 @@
_S_E = _S_udigits + 14 // For scientific notation, 'E'
};
- // A list of valid numeric literals for output.
- // This array contains the chars after having been passed through
- // the current locale's ctype<_CharT>.widen().
- // For the standard "C" locale, this is
+ // A list of valid numeric literals for output. This array contains chars
+ // that will be passed through the current locale's ctype<_CharT>.widen()
+ // and then used to render numbers.
+ // For the standard "C" locale, this is
// "-+xX0123456789abcdef0123456789ABCDEF".
static const char* _S_atoms_out;