diff --git a/js/src/nanojit/LIR.h b/js/src/nanojit/LIR.h index 86e2a0f285b4..30a0c900c21c 100644 --- a/js/src/nanojit/LIR.h +++ b/js/src/nanojit/LIR.h @@ -1581,10 +1581,10 @@ namespace nanojit CountMap(Allocator& alloc) : HashMap(alloc) {} int add(Key k) { int c = 1; - if (containsKey(k)) { - c = 1+get(k); + if (this->containsKey(k)) { + c = 1+this->get(k); } - put(k,c); + this->put(k,c); return c; } };