summaryrefslogtreecommitdiff
path: root/src/expr/expr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/expr.cpp')
-rw-r--r--src/expr/expr.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/expr/expr.cpp b/src/expr/expr.cpp
index 0170296be..032735ff0 100644
--- a/src/expr/expr.cpp
+++ b/src/expr/expr.cpp
@@ -171,12 +171,14 @@ Expr BoolExpr::iteExpr(const Expr& then_e, const Expr& else_e) const {
}
void Expr::printAst(std::ostream & o, int indent) const{
- getNode().printAst(o,indent);
+ getNode().printAst(o, indent);
}
void Expr::debugPrint(){
+#ifndef CVC4_MUZZLE
printAst(Warning());
Warning().flush();
+#endif /* ! CVC4_MUZZLE */
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback