File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -310,7 +310,8 @@ inline void addSameTypeRequirement(AnyObjectBuilder &builder,
310
310
ObjectRef<const char > type2) {
311
311
auto flags = GenericRequirementFlags (GenericRequirementKind::SameType,
312
312
/* key argument*/ false ,
313
- /* is pack requirement*/ false );
313
+ /* is pack requirement*/ false ,
314
+ /* is value requirement*/ false );
314
315
builder.add32 (flags.getIntValue ());
315
316
builder.addRelativeReference (type1);
316
317
builder.addRelativeReference (type2);
@@ -331,7 +332,8 @@ inline void addConformanceRequirement(AnyObjectBuilder &builder,
331
332
bool isKeyArgument = true ) {
332
333
auto flags = GenericRequirementFlags (GenericRequirementKind::Protocol,
333
334
isKeyArgument,
334
- /* is pack requirement*/ false );
335
+ /* is pack requirement*/ false ,
336
+ /* is value requirement*/ false );
335
337
builder.add32 (flags.getIntValue ());
336
338
builder.addRelativeReference (type);
337
339
addProtocolDescriptorRef (builder, protocol);
You can’t perform that action at this time.
0 commit comments