X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=cds%2Fcontainer%2Fmichael_map_rcu.h;h=ef44254733453213a4c5a74108c6117fb595e5b8;hb=6924946ceeaae28bc227fe7c9d8e939963bb9d69;hp=93198b8d33c82855b8abb3156e81e350065121f9;hpb=49c0aa6b50ba412f206f06419adf1bf2213ae373;p=libcds.git diff --git a/cds/container/michael_map_rcu.h b/cds/container/michael_map_rcu.h index 93198b8d..ef442547 100644 --- a/cds/container/michael_map_rcu.h +++ b/cds/container/michael_map_rcu.h @@ -855,15 +855,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 ); } //@endcond };