summaryrefslogtreecommitdiff
path: root/src/parser/smt2/smt2_input.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/smt2/smt2_input.h')
-rw-r--r--src/parser/smt2/smt2_input.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/parser/smt2/smt2_input.h b/src/parser/smt2/smt2_input.h
index 44187cd2d..1b99828aa 100644
--- a/src/parser/smt2/smt2_input.h
+++ b/src/parser/smt2/smt2_input.h
@@ -44,9 +44,6 @@ class Smt2Input : public AntlrInput {
/** The ANTLR3 SMT2 parser for the input. */
pSmt2Parser d_pSmt2Parser;
- /** Which (variant of the) input language we're using */
- InputLanguage d_lang;
-
/**
* Initialize the class. Called from the constructors once the input
* stream is initialized.
@@ -59,17 +56,11 @@ class Smt2Input : public AntlrInput {
*
* @param inputStream the input stream to use
*/
- Smt2Input(AntlrInputStream& inputStream,
- InputLanguage lang = language::input::LANG_SMTLIB_V2_5);
+ Smt2Input(AntlrInputStream& inputStream);
/** Destructor. Frees the lexer and the parser. */
virtual ~Smt2Input();
- /** Get the language that this Input is reading. */
- InputLanguage getLanguage() const override { return d_lang; }
- /** Set the language that this Input is reading. */
- void setLanguage(InputLanguage);
-
protected:
/**
* Parse a command from the input. Returns <code>NULL</code> if
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback