From 332357104e9ab1937049f0ea8e53042d8534f966 Mon Sep 17 00:00:00 2001 From: Aina Niemetz Date: Mon, 17 Dec 2018 14:11:37 -0800 Subject: New C++ API: Add tests for term object. (#2755) --- src/expr/expr_template.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/expr/expr_template.cpp') diff --git a/src/expr/expr_template.cpp b/src/expr/expr_template.cpp index 61568e411..96bdb2d04 100644 --- a/src/expr/expr_template.cpp +++ b/src/expr/expr_template.cpp @@ -595,7 +595,8 @@ Expr Expr::xorExpr(const Expr& e) const { return d_exprManager->mkExpr(XOR, *this, e); } -Expr Expr::iffExpr(const Expr& e) const { +Expr Expr::eqExpr(const Expr& e) const +{ Assert(d_exprManager != NULL, "Don't have an expression manager for this expression!"); PrettyCheckArgument(d_exprManager == e.d_exprManager, e, -- cgit v1.2.3