aboutsummaryrefslogtreecommitdiff
path: root/common/hashmap.h
diff options
context:
space:
mode:
authorMax Horn2009-04-28 10:23:08 +0000
committerMax Horn2009-04-28 10:23:08 +0000
commit9a971c7d80e7ef79a0a2a2d1ba99b385ff50c083 (patch)
tree06a6e580165ee43a654e1169a76a0f21726ad691 /common/hashmap.h
parentf4c294a613499b4938e8c40344f0a29131795a1f (diff)
downloadscummvm-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.h2
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);