diff options
author | Yang Gao <yangg@google.com> | 2015-06-22 13:52:32 -0700 |
---|---|---|
committer | Yang Gao <yangg@google.com> | 2015-06-22 13:52:32 -0700 |
commit | 04b0383d23e65482ba98b190fb802d237a5fe32a (patch) | |
tree | 9f1a5b3169e1a78493b0a6c58b5d4066519cbfad /test | |
parent | c4ce71e8665059cabd14fc9fb0bdc8eee357028c (diff) | |
parent | aeedff1ef89427e9becca488141f7004d45d630b (diff) |
Merge pull request #2160 from ctiller/no-point-for-an-object-here
Use a character literal instead of grpc::string
Diffstat (limited to 'test')
-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; |