Make more fixes for moving GenericStub from ::grpc_impl to ::grpc

pull/23512/head
Karthik Ravi Shankar 5 years ago
parent 53a5ad34c0
commit 3a9e1ef1b7
  1. 4
      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

Loading…
Cancel
Save