fixed a typo

svn-id: r40171
This commit is contained in:
Max Horn 2009-04-28 10:23:08 +00:00
parent f4c294a613
commit 9a971c7d80

View file

@ -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);