summaryrefslogtreecommitdiff
path: root/src/parser/cvc
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/cvc')
-rw-r--r--src/parser/cvc/cvc_parser.g4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/cvc/cvc_parser.g b/src/parser/cvc/cvc_parser.g
index e953244df..0cdf9f36b 100644
--- a/src/parser/cvc/cvc_parser.g
+++ b/src/parser/cvc/cvc_parser.g
@@ -154,7 +154,7 @@ identifier[DeclarationCheck check = CHECK_NONE,
returns [std::string id]
: x:IDENTIFIER
{ id = x->getText();
- AlwaysAssert( checkDeclaration(id, check, type) ); }
+ checkDeclaration(id, check, type); }
;
/**
@@ -381,6 +381,6 @@ functionSymbol[DeclarationCheck check = CHECK_NONE] returns [CVC4::Expr f]
std::string name;
}
: name = identifier[check,SYM_FUNCTION]
- { AlwaysAssert( checkFunction(name) );
+ { checkFunction(name);
f = getFunction(name); }
;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback