From 9a971c7d80e7ef79a0a2a2d1ba99b385ff50c083 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 28 Apr 2009 10:23:08 +0000 Subject: fixed a typo svn-id: r40171 --- common/hashmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/hashmap.h') diff --git a/common/hashmap.h b/common/hashmap.h index e840267796..16de7cdf54 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); -- cgit v1.2.3