Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions protobuf/runtime/src/com/google/protobuf/GeneratedMessage.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ J2OBJC_TYPE_LITERAL_HEADER(ComGoogleProtobufGeneratedMessage_ExtendableMessage)
- (id)setExtensionWithComGoogleProtobufExtensionLite:
(ComGoogleProtobufExtensionLite *)extension withInt:(jint)index withId:(id)value;
- (id)setExtensionWithComGoogleProtobufExtension:(CGPExtension *)extension withId:(id)value;
- (id)setExtensionWithComGoogleProtobufExtension:(CGPExtension *)extension
withInt:(jint)index
withId:(id)value;
- (id)setExtensionWithComGoogleProtobufGeneratedMessage_GeneratedExtension:
(CGPGeneratedExtension *)extension withId:(id)value;
- (id)setExtensionWithComGoogleProtobufGeneratedMessage_GeneratedExtension:
Expand Down
5 changes: 5 additions & 0 deletions protobuf/runtime/src/com/google/protobuf/GeneratedMessage.mm
Original file line number Diff line number Diff line change
Expand Up @@ -4168,6 +4168,11 @@ - (id)setExtensionWithComGoogleProtobufExtensionLite:
- (id)setExtensionWithComGoogleProtobufExtension:(CGPExtension *)extension withId:(id)value {
return [self setExtensionWithComGoogleProtobufExtensionLite:extension withId:value];
}
- (id)setExtensionWithComGoogleProtobufExtension:(CGPExtension *)extension
withInt:(jint)index
withId:(id)value {
return [self setExtensionWithComGoogleProtobufExtensionLite:extension withInt:index withId:value];
}
- (id)setExtensionWithComGoogleProtobufGeneratedMessage_GeneratedExtension:
(CGPGeneratedExtension *)extension withId:(id)value {
return [self setExtensionWithComGoogleProtobufExtensionLite:extension withId:value];
Expand Down