aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2006-03-31 22:38:27 +0000
committerMax Horn2006-03-31 22:38:27 +0000
commit05b0ed007e6aef996d0cd4aa15804d468a323c83 (patch)
tree9281db8531bee518921d0c8838a9dbaa5e57c687 /common
parentc50bfd9d34932fad078e1485164cdfa255f1020e (diff)
downloadscummvm-rg350-05b0ed007e6aef996d0cd4aa15804d468a323c83.tar.gz
scummvm-rg350-05b0ed007e6aef996d0cd4aa15804d468a323c83.tar.bz2
scummvm-rg350-05b0ed007e6aef996d0cd4aa15804d468a323c83.zip
Disable DEBUG_HASH_COLLISIONS again (accidentally got enabled in my previous commit)
svn-id: r21518
Diffstat (limited to 'common')
-rw-r--r--common/hashmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hashmap.h b/common/hashmap.h
index c67e2292db..55ed4ecc3b 100644
--- a/common/hashmap.h
+++ b/common/hashmap.h
@@ -80,7 +80,7 @@ uint nextTableSize(uint x);
// Enable the following #define if you want to check how many collisions the
// code produces (many collisions indicate either a bad hash function, or a
// hash table that is too small).
-#define DEBUG_HASH_COLLISIONS
+//#define DEBUG_HASH_COLLISIONS
/**
* HashMap<Key,Val> maps objects of type Key to objects of type Val.