Fix make errors

pull/18444/head
Karthik Ravi Shankar 6 years ago
parent 4d5a411557
commit 7fc86bd62f
  1. 11
      src/cpp/client/cronet_credentials.cc

@ -55,10 +55,11 @@ class CronetChannelCredentialsImpl final : public ChannelCredentials {
}
void* engine_;
};
std::shared_ptr<ChannelCredentials> CronetChannelCredentials(void* engine) {
} // namespace grpc
namespace grpc_impl {
std::shared_ptr<grpc_impl::ChannelCredentials> CronetChannelCredentials(
void* engine) {
return std::shared_ptr<ChannelCredentials>(
new CronetChannelCredentialsImpl(engine));
new grpc::CronetChannelCredentialsImpl(engine));
}
} // namespace grpc
} // namespace grpc_impl

Loading…
Cancel
Save