summaryrefslogtreecommitdiff
path: root/src/parser/smt2/smt2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/smt2/smt2.h')
-rw-r--r--src/parser/smt2/smt2.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/parser/smt2/smt2.h b/src/parser/smt2/smt2.h
index 4832fc6b5..94bc03235 100644
--- a/src/parser/smt2/smt2.h
+++ b/src/parser/smt2/smt2.h
@@ -278,9 +278,11 @@ public:
* Smt2 parser provides its own checkDeclaration, which does the
* same as the base, but with some more helpful errors.
*/
- void checkDeclaration(const std::string& name, DeclarationCheck check,
+ void checkDeclaration(const std::string& name,
+ DeclarationCheck check,
SymbolType type = SYM_VARIABLE,
- std::string notes = "") throw(ParserException) {
+ std::string notes = "")
+ {
// if the symbol is something like "-1", we'll give the user a helpful
// syntax hint. (-1 is a valid identifier in SMT-LIB, NOT unary minus.)
if( check != CHECK_DECLARED ||
@@ -304,7 +306,8 @@ public:
this->Parser::checkDeclaration(name, check, type, ss.str());
}
- void checkOperator(Kind kind, unsigned numArgs) throw(ParserException) {
+ void checkOperator(Kind kind, unsigned numArgs)
+ {
Parser::checkOperator(kind, numArgs);
// strict SMT-LIB mode enables extra checks for some bitvector operators
// that CVC4 permits as N-ary but the standard requires is binary
@@ -328,7 +331,8 @@ public:
}
// Throw a ParserException with msg appended with the current logic.
- inline void parseErrorLogic(const std::string& msg) throw(ParserException) {
+ inline void parseErrorLogic(const std::string& msg)
+ {
const std::string withLogic = msg + getLogic().getLogicString();
parseError(withLogic);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback