aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-22 12:31:53 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-22 12:31:53 -0700
commitaeedff1ef89427e9becca488141f7004d45d630b (patch)
tree3eb3076b76891f03cd84295fce290101370142fc /test
parentc7299987a0c7621d5d6bef7438e9baf04fc70de2 (diff)
Use a character literal instead of grpc::string
Diffstat (limited to 'test')
-rw-r--r--test/cpp/util/grpc_cli.cc2
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;