removed std::cerr

This commit is contained in:
Eric Berberich 2008-01-26 16:07:00 +00:00
parent 06e81291b6
commit df9c4e83b5
1 changed files with 0 additions and 2 deletions

View File

@ -130,13 +130,11 @@ public:
Canonicalizer canonicalize;
Key_type key = canonicalize(key_);
std::cerr << "key is: " << key << std::endl;
std::pair<Hashed_iterator, bool> p = find(key);
if(!p.second) {
Creator create;
Value_type val = create(key);
std::cerr << "constructed: " << val.id() << std::endl;
insert(Data_type(key, val));
return val;
}