summaryrefslogtreecommitdiff
path: root/src/smt/smt_engine.cpp
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-02-20 18:09:59 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-02-20 18:41:23 -0500
commit19847e87a8894d61b59d27bedd35aa73e44c126f (patch)
treec3c600e21e6fd74edf5d5e8a442cf6c2d2f28bab /src/smt/smt_engine.cpp
parent6fe464a1e87d62aa4ad12f7410542e09c3464436 (diff)
Some exception specification fixes in SmtEngine/Command infrastructure
Diffstat (limited to 'src/smt/smt_engine.cpp')
-rw-r--r--src/smt/smt_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smt/smt_engine.cpp b/src/smt/smt_engine.cpp
index 6b0d953dd..e7c0999da 100644
--- a/src/smt/smt_engine.cpp
+++ b/src/smt/smt_engine.cpp
@@ -3039,7 +3039,7 @@ Expr SmtEngine::expandDefinitions(const Expr& ex) throw(TypeCheckingException, L
return n.toExpr();
}
-Expr SmtEngine::getValue(const Expr& ex) throw(ModalException, LogicException) {
+Expr SmtEngine::getValue(const Expr& ex) throw(ModalException, TypeCheckingException, LogicException) {
Assert(ex.getExprManager() == d_exprManager);
SmtScope smts(this);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback