OSDN Git Service

2003-10-24 Paolo Carlini <pcarlini@suse.de>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Oct 2003 20:21:48 +0000 (20:21 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Oct 2003 20:21:48 +0000 (20:21 +0000)
* include/bits/locale_facets.tcc (__verify_grouping):
Prefer '=' to an unnecessary '&='.

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

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

index eecb7bc..999cadb 100644 (file)
@@ -1,5 +1,10 @@
 2003-10-24  Paolo Carlini  <pcarlini@suse.de>
 
+       * include/bits/locale_facets.tcc (__verify_grouping):
+       Prefer '=' to an unnecessary '&='.
+
+2003-10-24  Paolo Carlini  <pcarlini@suse.de>
+
        * include/bits/basic_ios.tcc (copyfmt(const basic_ios&)):
        Tweak my fix for libstdc++/12657.
 
index 5e8128e..4804e9b 100644 (file)
@@ -2264,8 +2264,8 @@ namespace std
       // numpunct::grouping string exactly, starting at the
       // right-most point of the parsed sequence of elements ...
       while (__test && __i < __n - 1)
-       for (__j = 0; __test && __j < __len && __i < __n - 1; ++__j,++__i)
-         __test &= __grouping[__j] == __grouping_tmp[__n - __i - 1];
+       for (__j = 0; __test && __j < __len && __i < __n - 1; ++__j, ++__i)
+         __test = __grouping[__j] == __grouping_tmp[__n - __i - 1];
       // ... but the last parsed grouping can be <= numpunct
       // grouping.
       __j == __len ? __j = 0 : __j;