aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/client_async.cc
diff options
context:
space:
mode:
authorGravatar Yuxuan Li <yuxuanli@google.com>2017-05-05 10:57:35 -0700
committerGravatar Yuxuan Li <yuxuanli@google.com>2017-05-05 10:57:35 -0700
commitbfb495d026952048c7fee641879deea357075ad8 (patch)
tree2b2bc4bab199177c3d76b536fd90d5055bf241d4 /test/cpp/qps/client_async.cc
parenta33e2b27a130d06271d9ed6fa102e9010a1ad1d0 (diff)
add override to GetPollCount() function
Diffstat (limited to 'test/cpp/qps/client_async.cc')
-rw-r--r--test/cpp/qps/client_async.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/qps/client_async.cc b/test/cpp/qps/client_async.cc
index 05756f0563..63da1e719d 100644
--- a/test/cpp/qps/client_async.cc
+++ b/test/cpp/qps/client_async.cc
@@ -209,7 +209,7 @@ class AsyncClient : public ClientImpl<StubType, RequestType> {
}
}
- int GetPollCount() {
+ int GetPollCount() override {
int count = 0;
for (auto cq = cli_cqs_.begin(); cq != cli_cqs_.end(); cq++) {
count += (int)grpc_get_cq_poll_num((*cq)->cq());