diff options
Diffstat (limited to 'lib/SMT/parser_temp.h')
-rw-r--r-- | lib/SMT/parser_temp.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/SMT/parser_temp.h b/lib/SMT/parser_temp.h index d6ad91a2..afd8af21 100644 --- a/lib/SMT/parser_temp.h +++ b/lib/SMT/parser_temp.h @@ -23,8 +23,7 @@ #ifndef _cvc3__parser_temp_h_ #define _cvc3__parser_temp_h_ -//#include "expr.h" -#define Expr void* +#include "expr/Parser.h" #include <sstream> #include <vector> @@ -48,7 +47,7 @@ namespace CVC3 { // File name std::string fileName; // The last parsed Expr - Expr expr; + klee::expr::ExprHandle* expr; // Whether we are done or not bool done; // Whether we are running interactive |