summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-06-14 01:40:51 +0000
committerMorgan Deters <mdeters@gmail.com>2012-06-14 01:40:51 +0000
commitd192b7f7aed685e89053bd0f0a4c3e42f1136b80 (patch)
tree356f157009368ae89798a39bf901f30a058cc45b /test
parentdd713fdbc16b07adc8011dea09b53fb3bc168662 (diff)
bug 346 resolved
Diffstat (limited to 'test')
-rw-r--r--test/system/boilerplate.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/system/boilerplate.cpp b/test/system/boilerplate.cpp
index f1dc77988..c64c1463e 100644
--- a/test/system/boilerplate.cpp
+++ b/test/system/boilerplate.cpp
@@ -31,8 +31,7 @@ int main() {
ExprManager em;
Options opts;
SmtEngine smt(&em);
- BoolExpr F = em.mkConst(true);
- Result r = smt.query(F);
+ Result r = smt.query(em.mkConst(true));
return r == Result::VALID ? 0 : 1;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback