summaryrefslogtreecommitdiff
path: root/src/compat
diff options
context:
space:
mode:
Diffstat (limited to 'src/compat')
-rw-r--r--src/compat/cvc3_compat.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/compat/cvc3_compat.cpp b/src/compat/cvc3_compat.cpp
index 3fa790f3e..24c4d8112 100644
--- a/src/compat/cvc3_compat.cpp
+++ b/src/compat/cvc3_compat.cpp
@@ -25,9 +25,11 @@
#include "base/exception.h"
#include "base/output.h"
+#include "expr/expr_iomanip.h"
#include "expr/kind.h"
#include "expr/predicate.h"
#include "expr/sexpr.h"
+#include "options/base_options.h"
#include "options/expr_options.h"
#include "options/parser_options.h"
#include "options/set_language.h"
@@ -1560,8 +1562,8 @@ void ValidityChecker::printExpr(const Expr& e) {
}
void ValidityChecker::printExpr(const Expr& e, std::ostream& os) {
- Expr::setdepth::Scope sd(os, -1);
- Expr::printtypes::Scope pt(os, false);
+ CVC4::expr::ExprSetDepth::Scope sd(os, -1);
+ CVC4::expr::ExprPrintTypes::Scope pt(os, false);
CVC4::language::SetLanguage::Scope sl(os, d_em->getOptions()[CVC4::options::outputLanguage]);
os << e;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback