File diff r15933:39e6324db57a → r15934:789c54d0000d
src/misc/hashtable.hpp
Show inline comments
 
@@ -9,12 +9,14 @@
 

	
 
/** @file hashtable.hpp Hash table support. */
 

	
 
#ifndef  HASHTABLE_HPP
 
#define  HASHTABLE_HPP
 

	
 
#include "../core/math_func.hpp"
 

	
 
template <class Titem_>
 
struct CHashTableSlotT
 
{
 
	typedef typename Titem_::Key Key;          // make Titem_::Key a property of HashTable
 

	
 
	Titem_ *m_pFirst;