From 25aa88af9470de87476e1d4e194d13103826693e Mon Sep 17 00:00:00 2001 From: Yuchen Zeng Date: Tue, 16 Aug 2016 10:50:40 -0700 Subject: [PATCH] Address review comments --- test/cpp/util/cli_credentials.h | 2 +- test/cpp/util/proto_file_parser.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/cpp/util/cli_credentials.h b/test/cpp/util/cli_credentials.h index 003eddee2b7..581b77a9c63 100644 --- a/test/cpp/util/cli_credentials.h +++ b/test/cpp/util/cli_credentials.h @@ -42,7 +42,7 @@ namespace testing { class CliCredentials { public: - virtual ~CliCredentials(){}; + virtual ~CliCredentials() {} virtual std::shared_ptr GetCredentials() const; virtual const grpc::string GetCredentialUsage() const; }; diff --git a/test/cpp/util/proto_file_parser.h b/test/cpp/util/proto_file_parser.h index b9e4a1ec2b9..eda3991e727 100644 --- a/test/cpp/util/proto_file_parser.h +++ b/test/cpp/util/proto_file_parser.h @@ -51,9 +51,9 @@ class ProtoFileParser { // The parser will search proto files using the server reflection service // provided on the given channel. The given protofiles in a source tree rooted // from proto_path will also be searched. - explicit ProtoFileParser(std::shared_ptr channel, - const grpc::string& proto_path, - const grpc::string& protofiles); + ProtoFileParser(std::shared_ptr channel, + const grpc::string& proto_path, + const grpc::string& protofiles); ~ProtoFileParser();