aboutsummaryrefslogtreecommitdiff
path: root/objectivec/GPBUnknownField.m
diff options
context:
space:
mode:
authorThomas Van Lenten <thomasvl@google.com>2016-05-26 11:10:00 -0400
committerThomas Van Lenten <thomasvl@google.com>2016-05-26 11:10:00 -0400
commit0f27cab4fb378b94a91c2b1522174ec21719df9d (patch)
tree6111cbd70b21027c678647381eba6d3974b51740 /objectivec/GPBUnknownField.m
parented87c1fe2c6e1633cadb62cf54b2723b2b25c280 (diff)
parentc8a440dfb68074ff310e624928cd2dd61c101728 (diff)
downloadprotobuf-0f27cab4fb378b94a91c2b1522174ec21719df9d.tar.gz
protobuf-0f27cab4fb378b94a91c2b1522174ec21719df9d.tar.bz2
protobuf-0f27cab4fb378b94a91c2b1522174ec21719df9d.zip
Merge pull request #1600 from thomasvl/objc_tighter_warnings
Add more warnings to for the ObjC runtime build
Diffstat (limited to 'objectivec/GPBUnknownField.m')
-rw-r--r--objectivec/GPBUnknownField.m8
1 files changed, 8 insertions, 0 deletions
diff --git a/objectivec/GPBUnknownField.m b/objectivec/GPBUnknownField.m
index 0e29bde5..30efe756 100644
--- a/objectivec/GPBUnknownField.m
+++ b/objectivec/GPBUnknownField.m
@@ -67,6 +67,12 @@
[super dealloc];
}
+// Direct access is use for speed, to avoid even internally declaring things
+// read/write, etc. The warning is enabled in the project to ensure code calling
+// protos can turn on -Wdirect-ivar-access without issues.
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wdirect-ivar-access"
+
- (id)copyWithZone:(NSZone *)zone {
GPBUnknownField *result =
[[GPBUnknownField allocWithZone:zone] initWithNumber:number_];
@@ -323,4 +329,6 @@
}
}
+#pragma clang diagnostic pop
+
@end