X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=cds%2Fcontainer%2Fmichael_map.h;h=9947409d7643e722d8e72eb3e362c15b0ec4507c;hb=6924946ceeaae28bc227fe7c9d8e939963bb9d69;hp=912ae81daef79af486deffdeb9ed5e4f59cff2a8;hpb=83904aeb6442d3f60c99dd627ac704feeb1b5a82;p=libcds.git diff --git a/cds/container/michael_map.h b/cds/container/michael_map.h index 912ae81d..9947409d 100644 --- a/cds/container/michael_map.h +++ b/cds/container/michael_map.h @@ -990,15 +990,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 ); } //@endcond };