diff options
author | Eugene Sandulenko | 2008-01-31 21:19:09 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2008-01-31 21:19:09 +0000 |
commit | 0ae9fe74674c4487bb74c2582fe03e74cc7da720 (patch) | |
tree | 0dd8c57a51be4f83359b880e9f6759cb71420166 | |
parent | 337164edee04a3389a57e1c0ee533a58083d5ce7 (diff) | |
download | scummvm-rg350-0ae9fe74674c4487bb74c2582fe03e74cc7da720.tar.gz scummvm-rg350-0ae9fe74674c4487bb74c2582fe03e74cc7da720.tar.bz2 scummvm-rg350-0ae9fe74674c4487bb74c2582fe03e74cc7da720.zip |
Second part of patch #1880781: "BeOS port for scummvm"
svn-id: r30720
-rw-r--r-- | common/hashmap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/hashmap.h b/common/hashmap.h index 98ad9c31c8..4f1122a088 100644 --- a/common/hashmap.h +++ b/common/hashmap.h @@ -116,7 +116,10 @@ public: int lookupAndCreateIfMissing(const Key &key); void expand_array(uint newsize); + class Iterator; class ConstIterator; + friend class Iterator; + friend class ConstIterator; /** * Simple HashMap iterator implementation. |