removed debug output

This commit is contained in:
csoler 2019-12-21 14:44:16 +01:00
parent 137cb5271d
commit 8f80db07c5
No known key found for this signature in database
GPG key ID: 7BCA522266C0804C
2 changed files with 1 additions and 19 deletions

View file

@ -53,8 +53,6 @@ uint64_t FeedItem::hash_64bits(const std::string& s) const
for(uint32_t i=0;i<s.size();++i)
mHash = ~(((mHash << 31) ^ (mHash >> 3)) + s[i]*0x217898fbba7 + 0x0294379);
std::cerr << "Producing hash " << std::hex << mHash << std::dec << " from string \"" << s << "\"" << std::endl;
}
return mHash;