aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-11-07 11:32:12 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-11-07 11:32:12 -0800
commit9e5d7476ac48b82ee8ce7855c30d3aa5edab5280 (patch)
tree5cfcd9afac921f67adaf467060eec7344531be55
parentab9510560781dd2f27608e694518f67b7d425d9a (diff)
nit build fix
-rw-r--r--src/objective-c/GRPCClient/GRPCCallOptions.m4
-rw-r--r--src/objective-c/GRPCClient/private/GRPCChannelPool.m2
-rw-r--r--src/objective-c/GRPCClient/private/GRPCHost.m2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCallOptions.m b/src/objective-c/GRPCClient/GRPCCallOptions.m
index 3e0dbbf7e4..ecb517762b 100644
--- a/src/objective-c/GRPCClient/GRPCCallOptions.m
+++ b/src/objective-c/GRPCClient/GRPCCallOptions.m
@@ -17,7 +17,7 @@
*/
#import "GRPCCallOptions.h"
-#import "internal/GRPCCallOptions+internal.h"
+#import "internal/GRPCCallOptions+Internal.h"
// The default values for the call options.
static NSString *const kDefaultServerAuthority = nil;
@@ -77,7 +77,7 @@ BOOL areObjectsEqual(id obj1, id obj2) {
NSString *_PEMCertChain;
GRPCTransportType _transportType;
NSString *_hostNameOverride;
- id _logContext;
+ id<NSObject> _logContext;
NSString *_channelPoolDomain;
NSUInteger _channelID;
}
diff --git a/src/objective-c/GRPCClient/private/GRPCChannelPool.m b/src/objective-c/GRPCClient/private/GRPCChannelPool.m
index 627bbab3c0..b4a589ae83 100644
--- a/src/objective-c/GRPCClient/private/GRPCChannelPool.m
+++ b/src/objective-c/GRPCClient/private/GRPCChannelPool.m
@@ -18,7 +18,7 @@
#import <Foundation/Foundation.h>
-#import "../internal/GRPCCallOptions+internal.h"
+#import "../internal/GRPCCallOptions+Internal.h"
#import "GRPCChannel.h"
#import "GRPCChannelFactory.h"
#import "GRPCChannelPool.h"
diff --git a/src/objective-c/GRPCClient/private/GRPCHost.m b/src/objective-c/GRPCClient/private/GRPCHost.m
index 8a59bd43d7..a67162c101 100644
--- a/src/objective-c/GRPCClient/private/GRPCHost.m
+++ b/src/objective-c/GRPCClient/private/GRPCHost.m
@@ -25,7 +25,7 @@
#include <grpc/grpc.h>
#include <grpc/grpc_security.h>
-#import "../internal/GRPCCallOptions+internal.h"
+#import "../internal/GRPCCallOptions+Internal.h"
#import "GRPCChannelFactory.h"
#import "GRPCCompletionQueue.h"
#import "GRPCConnectivityMonitor.h"