(svn r20887) -Codechange: Make stat_Hash a method.

This commit is contained in:
alberth
2010-10-02 19:47:21 +00:00
parent 6c31c357d6
commit 6be18d6b37
2 changed files with 10 additions and 5 deletions

View File

@@ -103,6 +103,11 @@ struct Hash {
{
return this->size;
}
protected:
#ifdef HASH_STATS
void PrintStatistics() const;
#endif
};
#endif /* QUEUE_H */