Delete a debugging message on hash algorithm registration.
authorMichael Vrable <vrable@cs.hmc.edu>
Mon, 4 Nov 2013 21:51:00 +0000 (13:51 -0800)
committerMichael Vrable <vrable@cs.hmc.edu>
Sun, 26 Jan 2014 23:48:08 +0000 (15:48 -0800)
hash.cc

diff --git a/hash.cc b/hash.cc
index 2875814..571bc1d 100644 (file)
--- a/hash.cc
+++ b/hash.cc
@@ -32,7 +32,6 @@ static map<string, Hash *(*)()> hash_registry;
 
 void Hash::Register(const std::string& name, Hash *(*constructor)())
 {
-    printf("Registered hash algorithm %s\n", name.c_str());
     hash_registry.insert(make_pair(name, constructor));
 }