summaryrefslogtreecommitdiff
path: root/src/smt_util/command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/smt_util/command.cpp')
-rw-r--r--src/smt_util/command.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/smt_util/command.cpp b/src/smt_util/command.cpp
index 464a2e0aa..ae4e1f1f0 100644
--- a/src/smt_util/command.cpp
+++ b/src/smt_util/command.cpp
@@ -23,6 +23,7 @@
#include <utility>
#include <vector>
+#include "base/cvc4_assert.h"
#include "base/output.h"
#include "expr/node.h"
#include "expr/sexpr.h"
@@ -939,7 +940,8 @@ GetValueCommand::GetValueCommand(Expr term) throw() :
GetValueCommand::GetValueCommand(const std::vector<Expr>& terms) throw() :
d_terms(terms) {
- CheckArgument(terms.size() >= 1, terms, "cannot get-value of an empty set of terms");
+ PrettyCheckArgument(terms.size() >= 1, terms,
+ "cannot get-value of an empty set of terms");
}
const std::vector<Expr>& GetValueCommand::getTerms() const throw() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback