| Index: third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m
|
| diff --git a/third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m b/third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m
|
| index a206f159ddc46664f5a4b84639f8e3bf2602901b..f35e435dfba5abcebf9b860b1943f04c46430add 100644
|
| --- a/third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m
|
| +++ b/third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m
|
| @@ -5,6 +5,9 @@
|
| #import "google/protobuf/Timestamp.pbobjc.h"
|
| // @@protoc_insertion_point(imports)
|
|
|
| +#pragma clang diagnostic push
|
| +#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
| +
|
| #pragma mark - GPBTimestampRoot
|
|
|
| @implementation GPBTimestampRoot
|
| @@ -46,25 +49,21 @@ typedef struct GPBTimestamp__storage_ {
|
| static GPBMessageFieldDescription fields[] = {
|
| {
|
| .name = "seconds",
|
| + .dataTypeSpecific.className = NULL,
|
| .number = GPBTimestamp_FieldNumber_Seconds,
|
| .hasIndex = 0,
|
| + .offset = (uint32_t)offsetof(GPBTimestamp__storage_, seconds),
|
| .flags = GPBFieldOptional,
|
| .dataType = GPBDataTypeInt64,
|
| - .offset = offsetof(GPBTimestamp__storage_, seconds),
|
| - .defaultValue.valueInt64 = 0LL,
|
| - .dataTypeSpecific.className = NULL,
|
| - .fieldOptions = NULL,
|
| },
|
| {
|
| .name = "nanos",
|
| + .dataTypeSpecific.className = NULL,
|
| .number = GPBTimestamp_FieldNumber_Nanos,
|
| .hasIndex = 1,
|
| + .offset = (uint32_t)offsetof(GPBTimestamp__storage_, nanos),
|
| .flags = GPBFieldOptional,
|
| .dataType = GPBDataTypeInt32,
|
| - .offset = offsetof(GPBTimestamp__storage_, nanos),
|
| - .defaultValue.valueInt32 = 0,
|
| - .dataTypeSpecific.className = NULL,
|
| - .fieldOptions = NULL,
|
| },
|
| };
|
| GPBDescriptor *localDescriptor =
|
| @@ -72,15 +71,9 @@ typedef struct GPBTimestamp__storage_ {
|
| rootClass:[GPBTimestampRoot class]
|
| file:GPBTimestampRoot_FileDescriptor()
|
| fields:fields
|
| - fieldCount:sizeof(fields) / sizeof(GPBMessageFieldDescription)
|
| - oneofs:NULL
|
| - oneofCount:0
|
| - enums:NULL
|
| - enumCount:0
|
| - ranges:NULL
|
| - rangeCount:0
|
| + fieldCount:(uint32_t)(sizeof(fields) / sizeof(GPBMessageFieldDescription))
|
| storageSize:sizeof(GPBTimestamp__storage_)
|
| - wireFormat:NO];
|
| + flags:0];
|
| NSAssert(descriptor == nil, @"Startup recursed!");
|
| descriptor = localDescriptor;
|
| }
|
| @@ -90,4 +83,6 @@ typedef struct GPBTimestamp__storage_ {
|
| @end
|
|
|
|
|
| +#pragma clang diagnostic pop
|
| +
|
| // @@protoc_insertion_point(global_scope)
|
|
|