Merge pull request #3315 from thomasvl/mutate_unknowns

Expose the initializer for unknown fields.
This commit is contained in:
Thomas Van Lenten 2017-07-05 11:25:38 -04:00 committed by GitHub
commit e264b20e69
2 changed files with 3 additions and 2 deletions

View file

@ -42,6 +42,9 @@ NS_ASSUME_NONNULL_BEGIN
**/
@interface GPBUnknownField : NSObject<NSCopying>
/** Initialize a field with the given number. */
- (instancetype)initWithNumber:(int32_t)number;
/** The field number the data is stored under. */
@property(nonatomic, readonly, assign) int32_t number;

View file

@ -36,8 +36,6 @@
@interface GPBUnknownField ()
- (instancetype)initWithNumber:(int32_t)number;
- (void)writeToOutput:(GPBCodedOutputStream *)output;
- (size_t)serializedSize;