From df8bbc66d283b104355623ee67cf3946bdd7a8eb Mon Sep 17 00:00:00 2001 From: Phil Edwards Date: Tue, 19 Sep 2000 21:54:48 +0000 Subject: [PATCH] howto.html: Fix editor lossage from last commit. 2000-09-19 Phil Edwards * docs/21_strings/howto.html: Fix editor lossage from last commit. From-SVN: r36547 --- libstdc++-v3/ChangeLog | 4 ++++ 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,3 +1,7 @@ +2000-09-19 Phil Edwards + + * docs/21_strings/howto.html: Fix editor lossage from last commit. + 2000-09-19 Phil Edwards * docs/thanks.html: More thanks. 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 @@ libstdc++-v3 HOWTO: Chapter 21 - + @@ -279,7 +279,12 @@ So, if all your input forevermore consists of only those 96 characters (hahahahahaha), then you're done.

-

At minimum, you can write +

At minimum, you can write short wrappers like +

+   char toLower (char c)
+   {
+      return tolower(static_cast<unsigned char>(c));
+   }

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 Phil Edwards or Gabriel Dos Reis. -
$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 $

-- 2.30.2