X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=cds%2Fcontainer%2Fmichael_set.h;h=85ffc5378ee42b8d34311d6307c0873b78910641;hp=32fddca4b131de57f1a8fe3e4c2ee170da1205f8;hb=6924946ceeaae28bc227fe7c9d8e939963bb9d69;hpb=49c0aa6b50ba412f206f06419adf1bf2213ae373 diff --git a/cds/container/michael_set.h b/cds/container/michael_set.h index 32fddca4..85ffc537 100644 --- a/cds/container/michael_set.h +++ b/cds/container/michael_set.h @@ -943,15 +943,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* b ) { - new (bucket) internal_bucket_type; + new (b) 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* b ) { - new (bucket) internal_bucket_type( m_Stat ); + new (b) internal_bucket_type( m_Stat ); } template