summaryrefslogtreecommitdiff
path: root/src/theory/sets
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sets')
-rw-r--r--src/theory/sets/theory_sets_type_rules.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/sets/theory_sets_type_rules.h b/src/theory/sets/theory_sets_type_rules.h
index 541835980..25ca63c28 100644
--- a/src/theory/sets/theory_sets_type_rules.h
+++ b/src/theory/sets/theory_sets_type_rules.h
@@ -180,7 +180,7 @@ struct UniverseSetTypeRule {
Assert(n.getKind() == kind::UNIVERSE_SET);
// for nullary operators, we only computeType for check=true, since they are given TypeAttr() on creation
Assert(check);
- TypeNode setType = n.getType(false);
+ TypeNode setType = n.getType();
if(!setType.isSet()) {
throw TypeCheckingExceptionPrivate(n, "COMPLEMENT operates on a set, non-set object found");
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback