From 53c6df7941e83e7e4993eba8ee39bbc81cdd3fe3 Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Tue, 9 Jun 2009 07:57:12 +0000 Subject: Made expression nodes int the SMT parser be pointers to ExprHandle. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73131 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/SMT/parser_temp.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/SMT/parser_temp.h') 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 #include @@ -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 -- cgit 1.4.1