diff --git a/common/hashmap.h b/common/hashmap.h index e840267796c..16de7cdf543 100644 --- a/common/hashmap.h +++ b/common/hashmap.h @@ -211,7 +211,7 @@ public: uint size() const { return _size; } iterator begin() { - // Find and return the _key non-empty entry + // Find and return the first non-empty entry for (uint ctr = 0; ctr <= _mask; ++ctr) { if (_storage[ctr]) return iterator(ctr, this);