about summary refs log tree commit diff homepage
path: root/lib/SMT/parser.h
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2009-06-09 07:57:12 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2009-06-09 07:57:12 +0000
commit53c6df7941e83e7e4993eba8ee39bbc81cdd3fe3 (patch)
treeb3f544871b831669fbf9f6ae4399cee2bee4c896 /lib/SMT/parser.h
parent7ef508afbc4651362f05e0989f7a1700f50a5f22 (diff)
downloadklee-53c6df7941e83e7e4993eba8ee39bbc81cdd3fe3.tar.gz
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
Diffstat (limited to 'lib/SMT/parser.h')
-rw-r--r--lib/SMT/parser.h4
1 files changed, 1 insertions, 3 deletions
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