Disable DEBUG_HASH_COLLISIONS again (accidentally got enabled in my previous commit)

svn-id: r21518
This commit is contained in:
Max Horn 2006-03-31 22:38:27 +00:00
parent c50bfd9d34
commit 05b0ed007e

View File

@ -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.