2003-11-23 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 23 Nov 2003 14:49:54 +0000 (14:49 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 23 Nov 2003 14:49:54 +0000 (14:49 +0000)
* include/bits/locale_facets.tcc (__add_grouping):
Cosmetic reformatting.

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

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/locale_facets.tcc

index 05e0d8f..1dbec0c 100644 (file)
@@ -1,5 +1,10 @@
 2003-11-23  Paolo Carlini  <pcarlini@suse.de>
 
+       * include/bits/locale_facets.tcc (__add_grouping):
+       Cosmetic reformatting.
+
+2003-11-23  Paolo Carlini  <pcarlini@suse.de>
+
        * include/bits/locale_facets.tcc (_M_extract_float,
        _M_extract_int): Remove a wrong comment and simplify
        the corresponding code using char_traits::find().
index 3b5c484..5f09924 100644 (file)
@@ -2265,20 +2265,20 @@ namespace std
     __add_grouping(_CharT* __s, _CharT __sep,  
                   const char* __gbeg, const char* __gend, 
                   const _CharT* __first, const _CharT* __last)
-  {
-    if (__last - __first > *__gbeg)
-      {
-       const bool __bump = __gbeg + 1 != __gend;
-       __s = std::__add_grouping(__s,  __sep, __gbeg + __bump,
-                                 __gend, __first, __last - *__gbeg);
-       __first = __last - *__gbeg;
-       *__s++ = __sep;
-      }
-    do
-      *__s++ = *__first++;
-    while (__first != __last);
-    return __s;
-  }
+    {
+      if (__last - __first > *__gbeg)
+       {
+         const bool __bump = __gbeg + 1 != __gend;
+         __s = std::__add_grouping(__s,  __sep, __gbeg + __bump,
+                                   __gend, __first, __last - *__gbeg);
+         __first = __last - *__gbeg;
+         *__s++ = __sep;
+       }
+      do
+       *__s++ = *__first++;
+      while (__first != __last);
+      return __s;
+    }
 
   // Inhibit implicit instantiations for required instantiations,
   // which are defined via explicit instantiations elsewhere.