File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/AST/RequirementMachine Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ struct Symbol::Storage final
92
92
DEBUG_ASSERT (kind == Symbol::Kind::Superclass ||
93
93
kind == Symbol::Kind::ConcreteType);
94
94
ASSERT (!type->hasUnboundGenericType ());
95
- ASSERT (!type->hasTypeVariable ());
95
+ DEBUG_ASSERT (!type->hasTypeVariable ());
96
96
ASSERT (type->hasTypeParameter () != substitutions.empty ());
97
97
98
98
Kind = kind;
@@ -105,7 +105,7 @@ struct Symbol::Storage final
105
105
}
106
106
107
107
Storage (CanType type, ArrayRef<Term> substitutions, const ProtocolDecl *proto) {
108
- ASSERT (!type->hasTypeVariable ());
108
+ DEBUG_ASSERT (!type->hasTypeVariable ());
109
109
ASSERT (type->hasTypeParameter () != substitutions.empty ());
110
110
111
111
Kind = Symbol::Kind::ConcreteConformance;
You can’t perform that action at this time.
0 commit comments