aboutsummaryrefslogtreecommitdiff
path: root/objectivec/google
diff options
context:
space:
mode:
authorThomas Van Lenten <thomasvl@google.com>2016-07-18 11:10:02 -0400
committerThomas Van Lenten <thomasvl@google.com>2016-07-18 11:10:02 -0400
commit2e98ed5d17e2e9a8cb557cc762883b792bc4a342 (patch)
treed89dbfcbe91c79ccbfd98ba871fe69fa03f457cb /objectivec/google
parentb99577c5ac3f3627f7eb11c866fad887920d1453 (diff)
downloadprotobuf-2e98ed5d17e2e9a8cb557cc762883b792bc4a342.tar.gz
protobuf-2e98ed5d17e2e9a8cb557cc762883b792bc4a342.tar.bz2
protobuf-2e98ed5d17e2e9a8cb557cc762883b792bc4a342.zip
Use public methods to fetch oneofs in generated code.
When building into frameworks, the generated code doesn't always have direct access to the proto internals. Instead of opening up the access, just use the public method to fetch the correct oneof. Fixes https://github.com/google/protobuf/issues/1789
Diffstat (limited to 'objectivec/google')
-rw-r--r--objectivec/google/protobuf/Struct.pbobjc.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/objectivec/google/protobuf/Struct.pbobjc.m b/objectivec/google/protobuf/Struct.pbobjc.m
index 538faab3..8ea1f124 100644
--- a/objectivec/google/protobuf/Struct.pbobjc.m
+++ b/objectivec/google/protobuf/Struct.pbobjc.m
@@ -237,7 +237,7 @@ void SetGPBValue_NullValue_RawValue(GPBValue *message, int32_t value) {
void GPBValue_ClearKindOneOfCase(GPBValue *message) {
GPBDescriptor *descriptor = [message descriptor];
- GPBOneofDescriptor *oneof = descriptor->oneofs_[0];
+ GPBOneofDescriptor *oneof = [descriptor.oneofs objectAtIndex:0];
GPBMaybeClearOneof(message, oneof, -1, 0);
}
#pragma mark - GPBListValue