Add default memory allocation and free functions for HSIterator and some other tiny...
[c11tester.git] / concretepredicate.h
index 6319a2ee23abbd29b97dcfd0938f00256fb501ff..c3b81bd995e5e15122c59af48645d89997d66e56 100644 (file)
@@ -9,11 +9,13 @@
 class ConcretePredicate {
 public:
        ConcretePredicate(thread_id_t tid);
-       ~ConcretePredicate();
+       ~ConcretePredicate() {}
 
        void add_expression(token_t token, uint64_t value, bool equality);
        SnapVector<struct concrete_pred_expr> * getExpressions() { return &expressions; }
+       void set_location(void * loc) { location = loc; }
        void * get_location() { return location; }
+       thread_id_t get_tid() { return tid; }
 
        SNAPSHOTALLOC
 private: