X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=cds%2Fcontainer%2Fmichael_set_rcu.h;h=54cf0686157ac4b592fd99e2d419f9bf0e9165e4;hb=6924946ceeaae28bc227fe7c9d8e939963bb9d69;hp=34bc0c2bbf33058f4153cdcbffc8a2cb5d6ee947;hpb=49c0aa6b50ba412f206f06419adf1bf2213ae373;p=libcds.git diff --git a/cds/container/michael_set_rcu.h b/cds/container/michael_set_rcu.h index 34bc0c2b..54cf0686 100644 --- a/cds/container/michael_set_rcu.h +++ b/cds/container/michael_set_rcu.h @@ -797,15 +797,15 @@ namespace cds { namespace container { } template - typename std::enable_if< Stat::empty >::type construct_bucket( internal_bucket_type* bucket ) + typename std::enable_if< Stat::empty >::type construct_bucket( internal_bucket_type* bkt ) { - new (bucket) internal_bucket_type; + new (bkt) internal_bucket_type; } template - typename std::enable_if< !Stat::empty >::type construct_bucket( internal_bucket_type* bucket ) + typename std::enable_if< !Stat::empty >::type construct_bucket( internal_bucket_type* bkt ) { - new (bucket) internal_bucket_type( m_Stat ); + new (bkt) internal_bucket_type( m_Stat ); } const_iterator get_const_begin() const