diff options
author | Max Horn | 2009-04-28 10:23:08 +0000 |
---|---|---|
committer | Max Horn | 2009-04-28 10:23:08 +0000 |
commit | 9a971c7d80e7ef79a0a2a2d1ba99b385ff50c083 (patch) | |
tree | 06a6e580165ee43a654e1169a76a0f21726ad691 /common/hashmap.h | |
parent | f4c294a613499b4938e8c40344f0a29131795a1f (diff) | |
download | scummvm-rg350-9a971c7d80e7ef79a0a2a2d1ba99b385ff50c083.tar.gz scummvm-rg350-9a971c7d80e7ef79a0a2a2d1ba99b385ff50c083.tar.bz2 scummvm-rg350-9a971c7d80e7ef79a0a2a2d1ba99b385ff50c083.zip |
fixed a typo
svn-id: r40171
Diffstat (limited to 'common/hashmap.h')
-rw-r--r-- | common/hashmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |