diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-19 21:54:48 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-19 21:54:48 +0000 |
commit | 052616625d3bbc50b09cd79f339c816260cdca06 (patch) | |
tree | e53ad2bb03fef3c93d4e81ad813acb2cdfa3a38e /libstdc++-v3 | |
parent | 0191b66a12d9afd9fd9d89fef5f7b1397b7bb439 (diff) | |
download | gcc-052616625d3bbc50b09cd79f339c816260cdca06.tar.gz |
2000-09-19 Phil Edwards <pme@sources.redhat.com>
* docs/21_strings/howto.html: Fix editor lossage from last commit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36547 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/docs/21_strings/howto.html | 11 |
2 files changed, 12 insertions, 3 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4ddca7d81dc..be501f33db3 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2000-09-19 Phil Edwards <pme@sources.redhat.com> + * docs/21_strings/howto.html: Fix editor lossage from last commit. + +2000-09-19 Phil Edwards <pme@sources.redhat.com> + * docs/thanks.html: More thanks. * docs/18_support/howto.html: Fix thinko. * docs/21_strings/howto.html: Minor tweaks and updates to URLs. diff --git a/libstdc++-v3/docs/21_strings/howto.html b/libstdc++-v3/docs/21_strings/howto.html index 1875447cc9c..17d1a47a065 100644 --- a/libstdc++-v3/docs/21_strings/howto.html +++ b/libstdc++-v3/docs/21_strings/howto.html @@ -9,7 +9,7 @@ <TITLE>libstdc++-v3 HOWTO: Chapter 21</TITLE> <LINK REL="home" HREF="http://sources.redhat.com/libstdc++/docs/21_strings/"> <LINK REL=StyleSheet HREF="../lib3styles.css"> -<!-- $Id: howto.html,v 1.3 2000/07/11 21:45:07 pme Exp $ --> +<!-- $Id: howto.html,v 1.4 2000/09/19 21:44:30 pme Exp $ --> </HEAD> <BODY> @@ -279,7 +279,12 @@ So, if all your input forevermore consists of only those 96 characters (hahahahahaha), then you're done. </P> - <P>At minimum, you can write + <P>At minimum, you can write short wrappers like + <PRE> + char toLower (char c) + { + return tolower(static_cast<unsigned char>(c)); + }</PRE> </P> <P>The correct method is to use a facet for a particular locale and call its conversion functions. These are discussed more in @@ -320,7 +325,7 @@ Comments and suggestions are welcome, and may be sent to <A HREF="mailto:pme@sources.redhat.com">Phil Edwards</A> or <A HREF="mailto:gdr@egcs.cygnus.com">Gabriel Dos Reis</A>. -<BR> $Id: howto.html,v 1.3 2000/07/11 21:45:07 pme Exp $ +<BR> $Id: howto.html,v 1.4 2000/09/19 21:44:30 pme Exp $ </EM></P> |