2003-10-21 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Oct 2003 11:42:29 +0000 (11:42 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Oct 2003 11:42:29 +0000 (11:42 +0000)
* src/locale.cc: Tweak a comment.
* src/localename.cc: Move a comment.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72745 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/src/locale.cc
libstdc++-v3/src/localename.cc

index 1493a4d..286ff68 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-21  Paolo Carlini  <pcarlini@suse.de>
+
+       * src/locale.cc: Tweak a comment.
+       * src/localename.cc: Move a comment.
+
 2003-10-20  Benjamin Kosnik  <bkoz@redhat.com>
  
        PR libstdc++/10081
index 78d0059..c3e5786 100644 (file)
@@ -28,7 +28,7 @@
 
 #include <clocale>
 #include <cstring>
-#include <cstdlib>     // For getenv, free.
+#include <cstdlib>     // For getenv
 #include <cctype>
 #include <cwctype>     // For towupper, etc.
 #include <locale>
@@ -55,7 +55,6 @@ namespace std
   __gthread_once_t             locale::_S_once = __GTHREAD_ONCE_INIT;
 #endif
 
-
   locale::locale(const locale& __other) throw()
   { (_M_impl = __other._M_impl)->_M_add_reference(); }
 
index e14053c..2c12ba7 100644 (file)
@@ -59,8 +59,8 @@ namespace std
              }
            else
              {
-               string __res;
                // LANG may set a default different from "C".
+               string __res;
                char* __env = std::getenv("LANG");
                if (!__env || std::strcmp(__env, "") == 0 
                    || std::strcmp(__env, "C") == 0