Merge pull request #2160 from ctiller/no-point-for-an-object-here

Use a character literal instead of grpc::string
pull/2047/head^2
Yang Gao 10 years ago
commit 04b0383d23
  1. 2
      test/cpp/util/grpc_cli.cc

@ -88,7 +88,7 @@ void ParseMetadataFlag(
return; return;
} }
std::vector<grpc::string> fields; std::vector<grpc::string> fields;
grpc::string delim(":"); const char* delim = ":";
size_t cur, next = -1; size_t cur, next = -1;
do { do {
cur = next + 1; cur = next + 1;

Loading…
Cancel
Save