From eebf21ef9940f507365b505fcd2fb290cc7c38b7 Mon Sep 17 00:00:00 2001 From: Paolo Carlini Date: Fri, 24 Oct 2003 20:21:48 +0000 Subject: [PATCH] locale_facets.tcc (__verify_grouping): Prefer '=' to an unnecessary '&='. 2003-10-24 Paolo Carlini * include/bits/locale_facets.tcc (__verify_grouping): Prefer '=' to an unnecessary '&='. From-SVN: r72908 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/include/bits/locale_facets.tcc | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index eecb7bc5940..999cadbe29c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2003-10-24 Paolo Carlini + + * include/bits/locale_facets.tcc (__verify_grouping): + Prefer '=' to an unnecessary '&='. + 2003-10-24 Paolo Carlini * include/bits/basic_ios.tcc (copyfmt(const basic_ios&)): diff --git a/libstdc++-v3/include/bits/locale_facets.tcc b/libstdc++-v3/include/bits/locale_facets.tcc index 5e8128efa7b..4804e9b8c17 100644 --- a/libstdc++-v3/include/bits/locale_facets.tcc +++ b/libstdc++-v3/include/bits/locale_facets.tcc @@ -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;