summaryrefslogtreecommitdiff
path: root/src/parser/cvc/cvc_input.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-07-06 15:52:10 +0000
committerMorgan Deters <mdeters@gmail.com>2010-07-06 15:52:10 +0000
commitd6b40829e8d92a7a298d0c0023d944131a8285cf (patch)
tree64fb36a7623cb2416d7129a3249d5875ce4f68ec /src/parser/cvc/cvc_input.cpp
parentb9f36ae0027e52da925416630ccad5d4b84779e9 (diff)
merge from CC work: pieces of the parser need to be declared to throw AssertionException, and language enum should have stream insertion op
Diffstat (limited to 'src/parser/cvc/cvc_input.cpp')
-rw-r--r--src/parser/cvc/cvc_input.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/parser/cvc/cvc_input.cpp b/src/parser/cvc/cvc_input.cpp
index 2b99f9a87..6b38abaab 100644
--- a/src/parser/cvc/cvc_input.cpp
+++ b/src/parser/cvc/cvc_input.cpp
@@ -58,11 +58,13 @@ CvcInput::~CvcInput() {
d_pCvcParser->free(d_pCvcParser);
}
-Command* CvcInput::parseCommand() throw (ParserException) {
+Command* CvcInput::parseCommand()
+ throw (ParserException, AssertionException) {
return d_pCvcParser->parseCommand(d_pCvcParser);
}
-Expr CvcInput::parseExpr() throw (ParserException) {
+Expr CvcInput::parseExpr()
+ throw (ParserException, AssertionException) {
return d_pCvcParser->parseExpr(d_pCvcParser);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback