diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-08-05 18:11:06 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-08-05 18:11:06 -0700 |
commit | d13bbed8becc2f3564734399012c09660ceed303 (patch) | |
tree | 65ff914352dce52c9d0be391dd4a44f630d1b8f3 | |
parent | d7f2ab31258a0972eb08e9fac0cac5b64b2a7919 (diff) |
Fix breakage (struct before undefined structs)
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCSecureChannel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCSecureChannel.h b/src/objective-c/GRPCClient/private/GRPCSecureChannel.h index ca8780ee8b..40207966b5 100644 --- a/src/objective-c/GRPCClient/private/GRPCSecureChannel.h +++ b/src/objective-c/GRPCClient/private/GRPCSecureChannel.h @@ -46,6 +46,6 @@ struct grpc_channel_args; hostNameOverride:(NSString *)hostNameOverride; - (instancetype)initWithHost:(NSString *)host - credentials:(grpc_credentials *)credentials - args:(grpc_channel_args *)args NS_DESIGNATED_INITIALIZER; + credentials:(struct grpc_credentials *)credentials + args:(struct grpc_channel_args *)args NS_DESIGNATED_INITIALIZER; @end |