File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,19 +117,19 @@ class LocalTypeDataKind {
117
117
// / same function.
118
118
static LocalTypeDataKind
119
119
forAbstractProtocolWitnessTable (ProtocolDecl *protocol) {
120
- assert (protocol && " protocol reference may not be null" );
120
+ ASSERT (protocol && " protocol reference may not be null" );
121
121
return LocalTypeDataKind (uintptr_t (protocol) | Kind_Decl);
122
122
}
123
123
124
124
// / A reference to a protocol witness table for a concrete type.
125
125
static LocalTypeDataKind
126
126
forConcreteProtocolWitnessTable (ProtocolConformance *conformance) {
127
- assert (conformance && " conformance reference may not be null" );
127
+ ASSERT (conformance && " conformance reference may not be null" );
128
128
return LocalTypeDataKind (uintptr_t (conformance) | Kind_Conformance);
129
129
}
130
130
131
131
static LocalTypeDataKind forProtocolWitnessTablePack (PackConformance *pack) {
132
- assert (pack && " pack conformance reference may not be null" );
132
+ ASSERT (pack && " pack conformance reference may not be null" );
133
133
return LocalTypeDataKind (uintptr_t (pack) | Kind_PackConformance);
134
134
}
135
135
You can’t perform that action at this time.
0 commit comments