(svn r7145) Remove extra semicolons

This commit is contained in:
tron
2006-11-14 11:01:59 +00:00
parent 50305fb253
commit a0b44e744f
8 changed files with 17 additions and 17 deletions

View File

@@ -120,8 +120,8 @@ class CHashTableT {
public:
typedef Titem_ Titem; // make Titem_ visible from outside of class
typedef typename Titem_::Key Tkey; // make Titem_::Key a property of HashTable
ST_CONST(int, Thash_bits = Thash_bits_); // publish num of hash bits
ST_CONST(int, Tcapacity = 1 << Thash_bits); // and num of slots 2^bits
ST_CONST(int, Thash_bits = Thash_bits_) // publish num of hash bits
ST_CONST(int, Tcapacity = 1 << Thash_bits) // and num of slots 2^bits
protected:
/** each slot contains pointer to the first item in the list,