ostream.tcc (__pad_char): Change toplevel '__fmt' to '__adjust' to avoid shadowing...
authorGabriel Dos Reis <gdr@merlin.codesourcery.com>
Mon, 13 Aug 2001 12:59:38 +0000 (12:59 +0000)
committerGabriel Dos Reis <gdr@gcc.gnu.org>
Mon, 13 Aug 2001 12:59:38 +0000 (12:59 +0000)
      * include/bits/ostream.tcc (__pad_char): Change toplevel '__fmt'
      to '__adjust' to avoid shadowing in nested scope.

From-SVN: r44849

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

index 9987e3f..9ff18df 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-13  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
+
+       * include/bits/ostream.tcc (__pad_char): Change toplevel '__fmt'
+       to '__adjust' to avoid shadowing in nested scope.
+
 2001-08-10  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
 
        * include/bits/std_limits.h(__glibcpp_char_is_signed): Use
index c24f295..957622b 100644 (file)
@@ -472,16 +472,16 @@ namespace std
       char_type* __end;
       size_t __mod = 0;
       size_t __beglen; //either __plen or __oldlen
-      ios_base::fmtflags __fmt = __ios.flags() & ios_base::adjustfield;
+      ios_base::fmtflags __adjust = __ios.flags() & ios_base::adjustfield;
 
-      if (__fmt == ios_base::left)
+      if (__adjust == ios_base::left)
        {
          // Padding last.
          __beg = const_cast<char_type*>(__olds);
          __beglen = __oldlen;
          __end = __pads;
        }
-      else if (__fmt == ios_base::internal)
+      else if (__adjust == ios_base::internal)
        {
          // Pad after the sign, if there is one.
          // Pad after 0[xX], if there is one.