diff options
Diffstat (limited to 'lib/SMT/parser.cpp')
-rw-r--r-- | lib/SMT/parser.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/SMT/parser.cpp b/lib/SMT/parser.cpp index b8191b50..9284d7d0 100644 --- a/lib/SMT/parser.cpp +++ b/lib/SMT/parser.cpp @@ -30,7 +30,6 @@ using namespace std; // The communication entry points of the actual parsers - // for smtlib language (smtlib.y and smtlib.lex) extern int smtlibparse(); extern void *smtlib_createBuffer(int); @@ -121,7 +120,7 @@ namespace CVC3 { } - Expr Parser::next() { + klee::expr::ExprHandle* Parser::next() { // If no more commands are available, return a Null Expr if(d_data->temp.done) return NULL;//Expr(); // Set the global var so the parser uses the right stream and EM |