fix clang tidy warning on explicit CronetChannelCredentialsImpl constructor (#31866)

pull/32060/head
Hannah Shi 2 years ago committed by GitHub
parent 2915f9fd53
commit bf9d7cb2fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/cpp/client/cronet_credentials.cc

@ -27,7 +27,7 @@ namespace grpc {
class CronetChannelCredentialsImpl final : public ChannelCredentials {
public:
CronetChannelCredentialsImpl(void* engine) : engine_(engine) {}
explicit CronetChannelCredentialsImpl(void* engine) : engine_(engine) {}
std::shared_ptr<grpc::Channel> CreateChannelImpl(
const string& target, const grpc::ChannelArguments& args) override {

Loading…
Cancel
Save