Merge pull request #1093 from thomasvl/fix_objc

Update objectivec/google/protobuf/Type.pbobjc.m
pull/1094/head
Thomas Van Lenten 9 years ago
commit d19c26f2c8
  1. 13
      objectivec/google/protobuf/Type.pbobjc.m

@ -208,6 +208,7 @@ void SetGPBType_Syntax_RawValue(GPBType *message, int32_t value) {
@dynamic packed; @dynamic packed;
@dynamic optionsArray, optionsArray_Count; @dynamic optionsArray, optionsArray_Count;
@dynamic jsonName; @dynamic jsonName;
@dynamic defaultValue;
typedef struct GPBField__storage_ { typedef struct GPBField__storage_ {
uint32_t _has_storage_[1]; uint32_t _has_storage_[1];
@ -220,6 +221,7 @@ typedef struct GPBField__storage_ {
NSString *typeURL; NSString *typeURL;
NSMutableArray *optionsArray; NSMutableArray *optionsArray;
NSString *jsonName; NSString *jsonName;
NSString *defaultValue;
} GPBField__storage_; } GPBField__storage_;
// This method is threadsafe because it is initially called // This method is threadsafe because it is initially called
@ -327,6 +329,17 @@ typedef struct GPBField__storage_ {
.dataTypeSpecific.className = NULL, .dataTypeSpecific.className = NULL,
.fieldOptions = NULL, .fieldOptions = NULL,
}, },
{
.name = "defaultValue",
.number = GPBField_FieldNumber_DefaultValue,
.hasIndex = 9,
.flags = GPBFieldOptional,
.dataType = GPBDataTypeString,
.offset = offsetof(GPBField__storage_, defaultValue),
.defaultValue.valueString = nil,
.dataTypeSpecific.className = NULL,
.fieldOptions = NULL,
},
}; };
static GPBMessageEnumDescription enums[] = { static GPBMessageEnumDescription enums[] = {
{ .enumDescriptorFunc = GPBField_Kind_EnumDescriptor }, { .enumDescriptorFunc = GPBField_Kind_EnumDescriptor },

Loading…
Cancel
Save