diff options
author | Craig Tiller <ctiller@google.com> | 2015-06-22 12:31:53 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-06-22 12:31:53 -0700 |
commit | aeedff1ef89427e9becca488141f7004d45d630b (patch) | |
tree | 3eb3076b76891f03cd84295fce290101370142fc /test/cpp/util | |
parent | c7299987a0c7621d5d6bef7438e9baf04fc70de2 (diff) |
Use a character literal instead of grpc::string
Diffstat (limited to 'test/cpp/util')
-rw-r--r-- | test/cpp/util/grpc_cli.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/util/grpc_cli.cc b/test/cpp/util/grpc_cli.cc index 32d61b0307..3c3baeb769 100644 --- a/test/cpp/util/grpc_cli.cc +++ b/test/cpp/util/grpc_cli.cc @@ -88,7 +88,7 @@ void ParseMetadataFlag( return; } std::vector<grpc::string> fields; - grpc::string delim(":"); + const char* delim = ":"; size_t cur, next = -1; do { cur = next + 1; |