| commit | 4335e11951a3c1cfafd1d7e75855e49b3d3a034c | [log] [tgz] |
|---|---|---|
| author | yang-g <yangg@google.com> | Tue Aug 30 10:09:08 2016 -0700 |
| committer | yang-g <yangg@google.com> | Tue Aug 30 10:09:08 2016 -0700 |
| tree | caebfa3eb552b7109247e6e8618fde2664aea3ac | |
| parent | 7684c74b3cb4dc0b9cc631410feeb2aff7a496b8 [diff] [blame] |
Prevent some compilers compaining unused return value
diff --git a/test/cpp/util/cli_call.cc b/test/cpp/util/cli_call.cc index 98b9d93..1edffbe 100644 --- a/test/cpp/util/cli_call.cc +++ b/test/cpp/util/cli_call.cc
@@ -94,7 +94,7 @@ if (status.ok()) { std::vector<grpc::Slice> slices; - recv_buffer.Dump(&slices); + (void)recv_buffer.Dump(&slices); response->clear(); for (size_t i = 0; i < slices.size(); i++) {