Fix dtinfo search engine

This commit is contained in:
Ulrich Wilkens
2014-04-01 04:45:33 +02:00
committed by Jon Trulson
parent 0254ebc0b4
commit 38dfc9e235
68 changed files with 252 additions and 135 deletions

View File

@@ -25,13 +25,13 @@
#include "Types.h"
#include "VariableTable.h"
static unsigned hash(const Symbol& key)
static unsigned shash(const Symbol& key)
{
return key.hash();
}
VariableTable::VariableTable()
: hashTable<Symbol,Expression>(hash)
: hashTable<Symbol,Expression>(shash)
{
}