Add serialize back to the test case
[satune.git] / src / AST / asthash.h
index bdb5ec6e315d1819502a4f391fc38e40a1429c14..a80d67e2d6f51b8ea536928b74974302e61df23e 100644 (file)
@@ -3,14 +3,14 @@
 #include "classes.h"
 #include "hashtable.h"
 
-uint hashBoolean(Boolean * boolean);
+uint hashBoolean(Boolean *boolean);
 bool compareBoolean(Boolean *b1, Boolean *b2);
 
 uint hashElement(Element *element);
 bool compareElement(Element *e1, Element *e2);
 
-typedef HashTable<Boolean *, Boolean *, uintptr_t, 4, hashBoolean, compareBoolean> BooleanMatchMap;
+typedef Hashtable<Boolean *, Boolean *, uintptr_t, 4, hashBoolean, compareBoolean> BooleanMatchMap;
 
-typedef HashTable<Element *, Element *, uintptr_t, 4, hashElement, compareElement> ElementMatchMap;
+typedef Hashtable<Element *, Element *, uintptr_t, 4, hashElement, compareElement> ElementMatchMap;
 
 #endif