aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-08-16 10:50:40 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-08-16 10:50:40 -0700
commit25aa88af9470de87476e1d4e194d13103826693e (patch)
tree72d5c50409994ae1f331e82e027de2494c7c581f /test
parent2bf991332364cf3e293f66d71e99f274e5959a2e (diff)
Address review comments
Diffstat (limited to 'test')
-rw-r--r--test/cpp/util/cli_credentials.h2
-rw-r--r--test/cpp/util/proto_file_parser.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/test/cpp/util/cli_credentials.h b/test/cpp/util/cli_credentials.h
index 003eddee2b..581b77a9c6 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<grpc::ChannelCredentials> 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 b9e4a1ec2b..eda3991e72 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<grpc::Channel> channel,
- const grpc::string& proto_path,
- const grpc::string& protofiles);
+ ProtoFileParser(std::shared_ptr<grpc::Channel> channel,
+ const grpc::string& proto_path,
+ const grpc::string& protofiles);
~ProtoFileParser();