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-08 08:30:59 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2009-06-08 08:30:59 +0000
commitef0bc0aee68cf791544865525005d91c73791bf2 (patch)
tree16df415a7fb249c7972e43df00e17ae013f385f3 /lib/SMT/parser.h
parentff6e5265662f6756ac827a5a8faaeaf0db99c03d (diff)
downloadklee-ef0bc0aee68cf791544865525005d91c73791bf2.tar.gz
More changes needed to make the SMTLIB parser compile.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73063 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/parser.h')
-rw-r--r--lib/SMT/parser.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/SMT/parser.h b/lib/SMT/parser.h
index 2e580a31..4e7f05ba 100644
--- a/lib/SMT/parser.h
+++ b/lib/SMT/parser.h
@@ -33,8 +33,7 @@
 
 namespace CVC3 {
 
-  class ValidityChecker;
-  class Expr;
+  //class Expr;
   
   // Internal parser state and other data
   class ParserData;
@@ -47,12 +46,11 @@ namespace CVC3 {
     void deleteParser();
   public:
     // Constructors
-    Parser(ValidityChecker* vc, InputLanguage lang,
+    Parser(InputLanguage lang,
 	   // The 'interactive' flag is ignored when fileName != ""
 	   bool interactive = true,
 	   const std::string& fileName = "");
-    Parser(ValidityChecker* vc, InputLanguage lang, std::istream& is,
-	   bool interactive = false);
+    Parser(InputLanguage lang, std::istream& is, bool interactive = false);
     // Destructor
     ~Parser();
     // Read the next command.