diff options
author | Max Horn | 2006-06-03 13:39:39 +0000 |
---|---|---|
committer | Max Horn | 2006-06-03 13:39:39 +0000 |
commit | 0e174a8adcb021e57c13298c888b077730c06a8d (patch) | |
tree | 6d51ce748dc4b4d2b7a0bdc7d738d2ae4f4cadc5 /common | |
parent | 76116f36dd946ee49863a356f03eac8a05f22dcb (diff) | |
download | scummvm-rg350-0e174a8adcb021e57c13298c888b077730c06a8d.tar.gz scummvm-rg350-0e174a8adcb021e57c13298c888b077730c06a8d.tar.bz2 scummvm-rg350-0e174a8adcb021e57c13298c888b077730c06a8d.zip |
Really remove HashMap::find(char *)
svn-id: r22874
Diffstat (limited to 'common')
-rw-r--r-- | common/hashmap.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/common/hashmap.h b/common/hashmap.h index 35d715001c..5e3d2a0f2b 100644 --- a/common/hashmap.h +++ b/common/hashmap.h @@ -208,14 +208,6 @@ public: return const_iterator(ctr, this); return end(); } -/* - const_iterator find(const char *key) const { - uint ctr = lookup(key); - if (_arr[ctr]) - return const_iterator(ctr, this); - return end(); - } -*/ // TODO: insert() method? |