X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=junction%2FConcurrentMap_Leapfrog.h;h=4850f0db0006fd822283ba0584ede5349288901b;hb=ce08f11c83396f629f998fe9e05ff1628f1e2677;hp=3a8493e62d18ec979cc4f2d26038d470cb0814f3;hpb=67553e4e9f491e31e92a0ccd2967eb34b0c6f206;p=junction.git diff --git a/junction/ConcurrentMap_Leapfrog.h b/junction/ConcurrentMap_Leapfrog.h index 3a8493e..4850f0d 100644 --- a/junction/ConcurrentMap_Leapfrog.h +++ b/junction/ConcurrentMap_Leapfrog.h @@ -197,7 +197,7 @@ public: } } - void setValue(Value desired) { + void assignValue(Value desired) { exchangeValue(desired); } @@ -273,7 +273,7 @@ public: } } - Value set(Key key, Value desired) { + Value assign(Key key, Value desired) { Mutator iter(*this, key); return iter.exchangeValue(desired); }