std_bitset.h (_M_do_find_next): Fix typo.
authorLevente Farkas <lfarkas@mindmaker.hu>
Wed, 25 Oct 2000 12:47:45 +0000 (12:47 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Wed, 25 Oct 2000 12:47:45 +0000 (12:47 +0000)
2000-10-24  Levente Farkas  <lfarkas@mindmaker.hu>

* include/bits/std_bitset.h (_M_do_find_next): Fix typo.

From-SVN: r37048

libstdc++-v3/include/bits/std_bitset.h

index 52f567854cb30efa7dc2ef676df7ee0d01eafcb2..0d90f283ddeedf1ff23d20c726add71885f1677e 100644 (file)
@@ -287,7 +287,7 @@ _Base_bitset<_Nw>::_M_do_find_next(size_t __prev, size_t __not_found) const
   // check subsequent words
   __i++;
   for ( ; __i < _Nw; __i++ ) {
-    _WordT __thisword = _M_w[__i];
+    __thisword = _M_w[__i];
     if ( __thisword != static_cast<_WordT>(0) ) {
       // find byte within word
       for ( size_t __j = 0; __j < sizeof(_WordT); __j++ ) {