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

This commit is contained in:
alberth
2010-10-02 19:47:21 +00:00
parent 4af4d268d8
commit 6802527e02
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 */