aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-12-10 18:06:34 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-12-10 18:06:34 -0800
commit20c8cc72920b14520160c4e2001caec2b8acddc0 (patch)
treea3a4756b6d78b078efd5b1c1d4c2d4e9c2585b0a /src/objective-c
parenteea5f1ad3dee4d96c9b86efe89f75c973cc57eed (diff)
nullability failing
Diffstat (limited to 'src/objective-c')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCChannelPool+Test.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCChannelPool+Test.h b/src/objective-c/GRPCClient/private/GRPCChannelPool+Test.h
index ca0cc51a52..e2c3aee3d9 100644
--- a/src/objective-c/GRPCClient/private/GRPCChannelPool+Test.h
+++ b/src/objective-c/GRPCClient/private/GRPCChannelPool+Test.h
@@ -18,6 +18,8 @@
#import "GRPCChannelPool.h"
+NS_ASSUME_NONNULL_BEGIN
+
/** Test-only interface for \a GRPCPooledChannel. */
@interface GRPCPooledChannel (Test)
@@ -31,7 +33,7 @@
/**
* Return the pointer to the raw channel wrapped.
*/
-@property(atomic, readonly) GRPCChannel *wrappedChannel;
+@property(atomic, readonly, nullable) GRPCChannel *wrappedChannel;
@end
@@ -45,3 +47,5 @@
- (nullable instancetype)initTestPool;
@end
+
+NS_ASSUME_NONNULL_END