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.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/parser/smt2/smt2_input.h b/src/parser/smt2/smt2_input.h
index 4d6168643..0acb5462d 100644
--- a/src/parser/smt2/smt2_input.h
+++ b/src/parser/smt2/smt2_input.h
@@ -53,8 +53,7 @@ class Smt2Input : public AntlrInput {
*/
void init();
-public:
-
+ public:
/**
* Create an input.
*
@@ -67,22 +66,18 @@ public:
virtual ~Smt2Input();
/** Get the language that this Input is reading. */
- InputLanguage getLanguage() const throw() {
- return d_lang;
- }
-
+ InputLanguage getLanguage() const override { return d_lang; }
/** Set the language that this Input is reading. */
void setLanguage(InputLanguage);
-protected:
-
+ protected:
/**
* Parse a command from the input. Returns <code>NULL</code> if
* there is no command there to parse.
*
* @throws ParserException if an error is encountered during parsing.
*/
- Command* parseCommand();
+ Command* parseCommand() override;
/**
* Parse an expression from the input. Returns a null
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback