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
9292 DEBUG_ASSERT (kind == Symbol::Kind::Superclass ||
9393 kind == Symbol::Kind::ConcreteType);
9494 ASSERT (!type->hasUnboundGenericType ());
95- ASSERT (!type->hasTypeVariable ());
95+ DEBUG_ASSERT (!type->hasTypeVariable ());
9696 ASSERT (type->hasTypeParameter () != substitutions.empty ());
9797
9898 Kind = kind;
@@ -105,7 +105,7 @@ struct Symbol::Storage final
105105 }
106106
107107 Storage (CanType type, ArrayRef<Term> substitutions, const ProtocolDecl *proto) {
108- ASSERT (!type->hasTypeVariable ());
108+ DEBUG_ASSERT (!type->hasTypeVariable ());
109109 ASSERT (type->hasTypeParameter () != substitutions.empty ());
110110
111111 Kind = Symbol::Kind::ConcreteConformance;
You can’t perform that action at this time.
0 commit comments