summaryrefslogtreecommitdiff
path: root/src/expr/metakind_template.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2010-04-09 16:25:32 +0000
committerMorgan Deters <mdeters@gmail.com>2010-04-09 16:25:32 +0000
commite390a4207d3858927354b3d4b40d540c00f8064c (patch)
tree589fd13ed8f6ba835cd79a2894092860b66b7696 /src/expr/metakind_template.h
parentc3a6ff8c6e4a0c743cd33eb29931f837eeb2959e (diff)
added experimental "make lcov" target (it runs only unit tests); better coverage for util and context classes; implemented some output functionality that was missing; reclassified some tests white -> black or black -> public; other minor fixes
Diffstat (limited to 'src/expr/metakind_template.h')
-rw-r--r--src/expr/metakind_template.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/expr/metakind_template.h b/src/expr/metakind_template.h
index 96152d075..fda2801be 100644
--- a/src/expr/metakind_template.h
+++ b/src/expr/metakind_template.h
@@ -199,7 +199,6 @@ inline bool NodeValueConstCompare<k, pool>::compare(const ::CVC4::expr::NodeValu
if(x->d_nchildren == 1) {
Assert(y->d_nchildren == 0);
return compare(y, x);
- return *reinterpret_cast<T*>(x->d_children[0]) == y->getConst<T>();
} else if(y->d_nchildren == 1) {
Assert(x->d_nchildren == 0);
return x->getConst<T>() == *reinterpret_cast<T*>(y->d_children[0]);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback