X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=cds%2Fcontainer%2Fmichael_set.h;h=e2aa8c3a73779dacc128059f640c0b2afe15c814;hb=46d9829c1e2543773c743957866679f97823ffc1;hp=81823a23791e4f6d80c026b658a98ba93d874290;hpb=2402fb1beb25ec532cea91c8dfbb9425eb5bdf48;p=libcds.git diff --git a/cds/container/michael_set.h b/cds/container/michael_set.h index 81823a23..e2aa8c3a 100644 --- a/cds/container/michael_set.h +++ b/cds/container/michael_set.h @@ -332,7 +332,7 @@ namespace cds { namespace container { size_t nMaxItemCount, ///< estimation of max item count in the hash set size_t nLoadFactor ///< load factor: estimation of max number of items in the bucket ) : m_nHashBitmask( michael_set::details::init_hash_bitmask( nMaxItemCount, nLoadFactor )) - , m_Buckets( bucket_table_allocator().allocate( bucket_count()) ) + , m_Buckets( bucket_table_allocator().allocate( bucket_count())) { for ( auto it = m_Buckets, itEnd = m_Buckets + bucket_count(); it != itEnd; ++it ) construct_bucket( it );