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.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/SMT/parser.h') diff --git a/lib/SMT/parser.h b/lib/SMT/parser.h index c55d7eda..c061841f 100644 --- a/lib/SMT/parser.h +++ b/lib/SMT/parser.h @@ -29,8 +29,6 @@ #define _cvc3__parser_h_ namespace CVC3 { - - //class Expr; // Internal parser state and other data class ParserData; @@ -50,7 +48,7 @@ namespace CVC3 { // Destructor ~Parser(); // Read the next command. - Expr next(); + klee::expr::ExprHandle* next(); // Check if we are done (end of input has been reached) bool done() const; // The same check can be done by using the class Parser's value as -- cgit 1.4.1