summaryrefslogtreecommitdiff
path: root/examples/hashsmt/word.cpp
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-10-05 22:07:16 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-10-05 22:07:16 +0000
commit4c87c0794b7e954afd090cfbf441caa0b09c3ef5 (patch)
treed0cfcf60cbf9600c52dcb728744802ad27a5c3e1 /examples/hashsmt/word.cpp
parent7a9899f394476e53b7f759e698c7e10c8388fd57 (diff)
BoolExpr removed and replaced with Expr
Diffstat (limited to 'examples/hashsmt/word.cpp')
-rw-r--r--examples/hashsmt/word.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hashsmt/word.cpp b/examples/hashsmt/word.cpp
index d1b8e2fef..c6cb8caf2 100644
--- a/examples/hashsmt/word.cpp
+++ b/examples/hashsmt/word.cpp
@@ -34,7 +34,7 @@ ExprManager* Word::em() {
return s_manager;
}
-BoolExpr Word::operator == (const Word& b) const {
+Expr Word::operator == (const Word& b) const {
return em()->mkExpr(kind::EQUAL, d_expr, b.getExpr());
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback