File diff r15612:c4c9adbab3f3 → r15613:193c12018337
src/misc/hashtable.hpp
Show inline comments
 
@@ -136,13 +136,14 @@ public:
 
	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,
 
	 *  Titem contains pointer to the next item - GetHashNext(), SetHashNext() */
 
	 *  Titem contains pointer to the next item - GetHashNext(), SetHashNext()
 
	 */
 
	typedef CHashTableSlotT<Titem_> Slot;
 

	
 
	Slot *m_slots;     // here we store our data (array of blobs)
 
	int   m_num_items; // item counter
 

	
 
public: