From 3a9e1ef1b7a1046b6dd4041152fea15d3351ab1d Mon Sep 17 00:00:00 2001 From: Karthik Ravi Shankar <karthikrs@google.com> Date: Thu, 16 Jul 2020 12:10:50 -0700 Subject: [PATCH] Make more fixes for moving GenericStub from ::grpc_impl to ::grpc --- include/grpcpp/generic/generic_stub.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/grpcpp/generic/generic_stub.h b/include/grpcpp/generic/generic_stub.h index 2c75c58913b..8a8806a5e7b 100644 --- a/include/grpcpp/generic/generic_stub.h +++ b/include/grpcpp/generic/generic_stub.h @@ -106,7 +106,7 @@ class TemplatedGenericStub final { /// StartCall is invoked on its reactor. void PrepareUnaryCall(ClientContext* context, const std::string& method, const RequestType* request, ResponseType* response, - ClientUnaryReactor* reactor) { + ::grpc_impl::ClientUnaryReactor* reactor) { PrepareUnaryCallInternal(context, method, request, response, reactor); } @@ -115,7 +115,7 @@ class TemplatedGenericStub final { /// until StartCall is invoked on its reactor. void PrepareBidiStreamingCall( ClientContext* context, const std::string& method, - ClientBidiReactor<RequestType, ResponseType>* reactor) { + ::grpc_impl::ClientBidiReactor<RequestType, ResponseType>* reactor) { PrepareBidiStreamingCallInternal(context, method, reactor); } #endif