diff options
author | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-08 08:22:23 +0000 |
---|---|---|
committer | Cristian Cadar <cristic@cs.stanford.edu> | 2009-06-08 08:22:23 +0000 |
commit | ff6e5265662f6756ac827a5a8faaeaf0db99c03d (patch) | |
tree | d16f1a3a2528deffff2214c9dd44f4ff54b893e0 /lib/SMT/parser_temp.h | |
parent | 9e9d2177ebaeba1e14a29b479de8e6465bb2f162 (diff) | |
download | klee-ff6e5265662f6756ac827a5a8faaeaf0db99c03d.tar.gz |
Removed ValidityChecker field from ParserTemp. Temporarily replaced
Expr with void* to quickly get some compilable parser. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/parser_temp.h')
-rw-r--r-- | lib/SMT/parser_temp.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/SMT/parser_temp.h b/lib/SMT/parser_temp.h index 2c6f6b38..ad6bf5f1 100644 --- a/lib/SMT/parser_temp.h +++ b/lib/SMT/parser_temp.h @@ -23,12 +23,14 @@ #ifndef _cvc3__parser_temp_h_ #define _cvc3__parser_temp_h_ -#include "expr.h" +//#include "expr.h" +#define Expr void* #include "exception.h" -namespace CVC3 { +#include <sstream> +#include <vector> - class ValidityChecker; +namespace CVC3 { class ParserTemp { private: @@ -41,7 +43,6 @@ namespace CVC3 { // The currently used prompt std::string prompt; public: - ValidityChecker* vc; std::istream* is; // The current input line int lineNum; |