OSDN Git Service

2003-11-30 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 30 Nov 2003 11:33:23 +0000 (11:33 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 30 Nov 2003 11:33:23 +0000 (11:33 +0000)
* include/bits/locale_facets.tcc (num_put::do_put(..., bool)):
Minor tweaks, consistent with the style used in other facets.

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

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

index 931002b..b0030a5 100644 (file)
@@ -1,3 +1,8 @@
+2003-11-30  Paolo Carlini  <pcarlini@suse.de>
+
+       * include/bits/locale_facets.tcc (num_put::do_put(..., bool)):
+       Minor tweaks, consistent with the style used in other facets.
+
 2003-11-29  Paolo Carlini  <pcarlini@suse.de>
 
        * include/bits/fstream.tcc (underflow): Minor tweaks in
index c2097e3..147a9bc 100644 (file)
@@ -1008,16 +1008,15 @@ namespace std
          const locale& __loc = __io._M_getloc();
          const __cache_type* __lc = __uc(__loc);
 
-         const _CharT* __name;
-         __name = __v ? __lc->_M_truename : __lc->_M_falsename;
+         const _CharT* __name = __v ? __lc->_M_truename 
+                                    : __lc->_M_falsename;
          int __len = char_traits<_CharT>::length(__name);
 
-         _CharT* __cs;
          const streamsize __w = __io.width();
          if (__w > static_cast<streamsize>(__len))
            {
-             __cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) 
-                                                           * __w));
+             _CharT* __cs = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) 
+                                                                  * __w));
              _M_pad(__fill, __w, __io, __cs, __name, __len);
              __name = __cs;
            }