summaryrefslogtreecommitdiff
path: root/grpc/src/cpp/client/create_channel_internal.cc
diff options
context:
space:
mode:
Diffstat (limited to 'grpc/src/cpp/client/create_channel_internal.cc')
-rw-r--r--grpc/src/cpp/client/create_channel_internal.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/grpc/src/cpp/client/create_channel_internal.cc b/grpc/src/cpp/client/create_channel_internal.cc
index 71398bd0..3523d503 100644
--- a/grpc/src/cpp/client/create_channel_internal.cc
+++ b/grpc/src/cpp/client/create_channel_internal.cc
@@ -16,7 +16,12 @@
*
*/
+#include "src/cpp/client/create_channel_internal.h"
+
#include <memory>
+#include <string>
+#include <utility>
+#include <vector>
#include <grpcpp/channel.h>
@@ -26,8 +31,8 @@ namespace grpc {
std::shared_ptr<Channel> CreateChannelInternal(
const std::string& host, grpc_channel* c_channel,
- std::vector<std::unique_ptr<
- ::grpc::experimental::ClientInterceptorFactoryInterface>>
+ std::vector<
+ std::unique_ptr<grpc::experimental::ClientInterceptorFactoryInterface>>
interceptor_creators) {
return std::shared_ptr<Channel>(
new Channel(host, c_channel, std::move(interceptor_creators)));