aboutsummaryrefslogtreecommitdiff
path: root/objectivec/GPBUnknownField.h
diff options
context:
space:
mode:
authorThomas Van Lenten <thomasvl@google.com>2016-02-19 10:45:32 -0500
committerThomas Van Lenten <thomasvl@google.com>2016-02-19 10:45:32 -0500
commit894c4d6a8bb9ab6b6d4791be98656cfb5399d0bc (patch)
tree0be07973ab4a789c95b061dc70a8b6ff77639660 /objectivec/GPBUnknownField.h
parentc003abb40d64ecd6694fab239d3fc126b31eee0d (diff)
parent2480acb6d974a2cfc1da5b1ea8cc14f2415e6dfe (diff)
downloadprotobuf-894c4d6a8bb9ab6b6d4791be98656cfb5399d0bc.tar.gz
protobuf-894c4d6a8bb9ab6b6d4791be98656cfb5399d0bc.tar.bz2
protobuf-894c4d6a8bb9ab6b6d4791be98656cfb5399d0bc.zip
Merge pull request #1257 from thomasvl/objc_generics
Support ObjC Generic Collections
Diffstat (limited to 'objectivec/GPBUnknownField.h')
-rw-r--r--objectivec/GPBUnknownField.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/objectivec/GPBUnknownField.h b/objectivec/GPBUnknownField.h
index 12d72a9a..43709ee5 100644
--- a/objectivec/GPBUnknownField.h
+++ b/objectivec/GPBUnknownField.h
@@ -45,8 +45,8 @@ NS_ASSUME_NONNULL_BEGIN
@property(nonatomic, readonly, strong) GPBUInt64Array *varintList;
@property(nonatomic, readonly, strong) GPBUInt32Array *fixed32List;
@property(nonatomic, readonly, strong) GPBUInt64Array *fixed64List;
-@property(nonatomic, readonly, strong) NSArray *lengthDelimitedList; // NSData
-@property(nonatomic, readonly, strong) NSArray *groupList; // GPBUnknownFieldSet
+@property(nonatomic, readonly, strong) NSArray<NSData*> *lengthDelimitedList;
+@property(nonatomic, readonly, strong) NSArray<GPBUnknownFieldSet*> *groupList;
// Only one of these should be used per Field.
- (void)addVarint:(uint64_t)value;