aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-06-09 22:48:36 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-06-09 22:48:36 -0700
commit77ece807bb612df1c0a9537dd6c095969ca57f67 (patch)
treec6d0e2d0ae087e4152029d068fc38a51a502863c /test/cpp
parent2ea980652f67efbec5c3495062bedb72034ce51b (diff)
parentb6d57e704bffb755a1ce60d983c48e890832512e (diff)
Merge pull request #2025 from yang-g/ghost
add missed explicit
Diffstat (limited to 'test/cpp')
-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 921836e201..1b7a8d26b2 100644
--- a/test/cpp/qps/client_async.cc
+++ b/test/cpp/qps/client_async.cc
@@ -62,7 +62,7 @@ typedef std::list<grpc_time> deadline_list;
class ClientRpcContext {
public:
- ClientRpcContext(int ch) : channel_id_(ch) {}
+ explicit ClientRpcContext(int ch) : channel_id_(ch) {}
virtual ~ClientRpcContext() {}
// next state, return false if done. Collect stats when appropriate
virtual bool RunNextState(bool, Histogram* hist) = 0;