about summary refs log tree commit diff homepage
path: root/lib/SMT/parser.h
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-06-09 00:58:29 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-06-09 00:58:29 +0000
commit76ce7fc9917af0a106550ac501545f7941d17744 (patch)
treef38e4ff66317b89f255fc01204fa1bc58dbf4326 /lib/SMT/parser.h
parent624342a7f0653283746a9b4b1a737c1e1925ebc4 (diff)
downloadklee-76ce7fc9917af0a106550ac501545f7941d17744.tar.gz
Get rid of Parser language member, we only use SMTLIB.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/SMT/parser.h')
-rw-r--r--lib/SMT/parser.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/SMT/parser.h b/lib/SMT/parser.h
index 4e7f05ba..04c2f73b 100644
--- a/lib/SMT/parser.h
+++ b/lib/SMT/parser.h
@@ -46,11 +46,10 @@ namespace CVC3 {
     void deleteParser();
   public:
     // Constructors
-    Parser(InputLanguage lang,
-	   // The 'interactive' flag is ignored when fileName != ""
+    Parser(// The 'interactive' flag is ignored when fileName != ""
 	   bool interactive = true,
 	   const std::string& fileName = "");
-    Parser(InputLanguage lang, std::istream& is, bool interactive = false);
+    Parser(std::istream& is, bool interactive = false);
     // Destructor
     ~Parser();
     // Read the next command.