projects
/
cumulus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32f9be8
)
Delete a debugging message on hash algorithm registration.
author
Michael Vrable
<vrable@cs.hmc.edu>
Mon, 4 Nov 2013 21:51:00 +0000
(13:51 -0800)
committer
Michael Vrable
<vrable@cs.hmc.edu>
Sun, 26 Jan 2014 23:48:08 +0000
(15:48 -0800)
hash.cc
patch
|
blob
|
history
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));
}