Merge pull request #24459 from yashykt/runclangtidy

Fix sanity on master
pull/24461/head
Yash Tibrewal 4 years ago committed by GitHub
commit b4628c6f9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/ext/xds/certificate_provider_factory.h
  2. 2
      test/core/client_channel/xds_bootstrap_test.cc

@ -34,7 +34,7 @@ class CertificateProviderFactory {
// Interface for configs for CertificateProviders.
class Config : public RefCounted<Config> {
public:
virtual ~Config() = default;
~Config() override = default;
// Name of the type of the CertificateProvider. Unique to each type of
// config.

@ -35,7 +35,7 @@ class XdsBootstrapTest : public ::testing::Test {
public:
XdsBootstrapTest() { grpc_init(); }
~XdsBootstrapTest() { grpc_shutdown_blocking(); }
~XdsBootstrapTest() override { grpc_shutdown_blocking(); }
};
TEST_F(XdsBootstrapTest, Basic) {

Loading…
Cancel
Save