(svn r7146) -CodeChange: ST_CONST macro removed as it is no longer needed (Tron)

This commit is contained in:
KUDr
2006-11-14 12:02:36 +00:00
parent 55d6c98f89
commit ecccf79c07
5 changed files with 12 additions and 23 deletions

View File

@@ -118,10 +118,10 @@ struct CHashTableSlotT
template <class Titem_, int Thash_bits_>
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
typedef Titem_ Titem; // make Titem_ visible from outside of class
typedef typename Titem_::Key Tkey; // make Titem_::Key a property of HashTable
static const int Thash_bits = Thash_bits_; // publish num of hash bits
static const int Tcapacity = 1 << Thash_bits; // and num of slots 2^bits
protected:
/** each slot contains pointer to the first item in the list,