diff options
author | Levente Farkas <lfarkas@mindmaker.hu> | 2000-10-25 12:47:45 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2000-10-25 12:47:45 +0000 |
commit | cc66e4ac40dbb8f4a93922def459c81d174af6cf (patch) | |
tree | 9babba4413b58ec0ee258ab94fdd77c8e4989f65 | |
parent | ce2ab205ae2821e9a72c2d09ba7440825f4c8fcc (diff) | |
download | gcc-cc66e4ac40dbb8f4a93922def459c81d174af6cf.zip gcc-cc66e4ac40dbb8f4a93922def459c81d174af6cf.tar.gz gcc-cc66e4ac40dbb8f4a93922def459c81d174af6cf.tar.bz2 |
std_bitset.h (_M_do_find_next): Fix typo.
2000-10-24 Levente Farkas <lfarkas@mindmaker.hu>
* include/bits/std_bitset.h (_M_do_find_next): Fix typo.
From-SVN: r37048
-rw-r--r-- | libstdc++-v3/include/bits/std_bitset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/std_bitset.h b/libstdc++-v3/include/bits/std_bitset.h index 52f5678..0d90f28 100644 --- a/libstdc++-v3/include/bits/std_bitset.h +++ b/libstdc++-v3/include/bits/std_bitset.h @@ -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++ ) { |