X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=boost%2Fintrusive%2Fdetail%2Fihashtable.hpp;h=19e6d6f8718822eba5dc4284e7362bca3630b20c;hb=fd884ba2ba992b5032c0644ade77613074216767;hp=f320edbbe0eefc793ecfb32ff4244ae1697d5231;hpb=8d2d26f114d3df0a60c5c516fcf40671b1e55558;p=senf.git diff --git a/boost/intrusive/detail/ihashtable.hpp b/boost/intrusive/detail/ihashtable.hpp index f320edb..19e6d6f 100644 --- a/boost/intrusive/detail/ihashtable.hpp +++ b/boost/intrusive/detail/ihashtable.hpp @@ -1,6 +1,6 @@ ///////////////////////////////////////////////////////////////////////////// // -// (C) Copyright Ion Gaztañaga 2006-2007 +// (C) Copyright Ion Gazta�aga 2006-2007 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at @@ -221,13 +221,13 @@ class ihashtable ++local_it_; size_type buckets_len = bucket_info_->buckets_len_; bucket_ptr buckets = bucket_info_->buckets_; - while (local_it_ == islist_from_bucket(buckets[n_bucket_]).end()){ - if (++n_bucket_ == buckets_len){ - local_it_ = invalid_local_it(*bucket_info_); - break; - } - local_it_ = islist_from_bucket(buckets[n_bucket_]).begin(); - } + while (local_it_ == islist_from_bucket(buckets[n_bucket_]).end()){ + if (++n_bucket_ == buckets_len) { + local_it_ = invalid_local_it(*bucket_info_); + break; + } + local_it_ = islist_from_bucket(buckets[n_bucket_]).begin(); + } return static_cast (*this); }