Skip to content

Commit da5d639

Browse files
committed
Do not require overriding this method
I'm working to fully remove this method, but because it's used and/or implemented in a few places, I'm backing it out incrementally. This just changes the abstract method so I can delete the implementors in a subsequent PR without breaking anything.
1 parent fbe7d89 commit da5d639

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/RemoteInspection/DescriptorFinder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ struct DescriptorFinder {
126126
getFieldDescriptor(const TypeRef *TR) = 0;
127127

128128
virtual std::unique_ptr<MultiPayloadEnumDescriptorBase>
129-
getMultiPayloadEnumDescriptor(const TypeRef *TR) = 0;
129+
getMultiPayloadEnumDescriptor(const TypeRef *TR) { abort(); };
130130
};
131131

132132
} // namespace reflection

0 commit comments

Comments
 (0)