Fix some of the memory leaks
[satune.git] / src / Collections / structs.c
index f5f8f68e323aac242344fdc216eb68995e27a00d..045323143c9402ba9533a42b9903efab38e8b60f 100644 (file)
@@ -30,4 +30,4 @@ static inline unsigned int order_pair_equals(OrderPair* key1, OrderPair* key2){
        return key1->first== key2->first && key1->second == key2->second;
 }
 
-HashTableImpl(BoolConst, OrderPair *, Constraint *, order_pair_hash_Function, order_pair_equals);
+HashTableImpl(BoolConst, OrderPair *, OrderPair *, order_pair_hash_Function, order_pair_equals, ourfree);