summaryrefslogtreecommitdiff
path: root/src/theory/booleans
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-01 02:25:39 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-01 02:25:39 +0000
commit4e38397c87b4437089b92cd274e65f3d17096d73 (patch)
treee69dcb835df3c3baa6bd99f08a6470c75d06b3b5 /src/theory/booleans
parentc90b1b66e6c8e3b77f2b73b73208f120445e5f91 (diff)
some fixes for Mac OS
Diffstat (limited to 'src/theory/booleans')
-rw-r--r--src/theory/booleans/type_enumerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/booleans/type_enumerator.h b/src/theory/booleans/type_enumerator.h
index 36fb6d855..c83e79d75 100644
--- a/src/theory/booleans/type_enumerator.h
+++ b/src/theory/booleans/type_enumerator.h
@@ -35,7 +35,7 @@ class BooleanEnumerator : public TypeEnumeratorBase<BooleanEnumerator> {
public:
BooleanEnumerator(TypeNode type) :
- TypeEnumeratorBase(type),
+ TypeEnumeratorBase<BooleanEnumerator>(type),
d_value(FALSE) {
Assert(type.getKind() == kind::TYPE_CONSTANT &&
type.getConst<TypeConstant>() == BOOLEAN_TYPE);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback