Skip to content
Snippets Groups Projects
Commit 6e03558a authored by Craig Tiller's avatar Craig Tiller Committed by GitHub
Browse files

Merge pull request #8173 from yang-g/init_variable

Properly init variable
parents 1696e5da e267f86c
Branches
Tags
No related merge requests found
......@@ -129,7 +129,10 @@ class HistogramEntry GRPC_FINAL {
class Client {
public:
Client() : timer_(new UsageTimer), interarrival_timer_() {
Client()
: timer_(new UsageTimer),
interarrival_timer_(),
started_requests_(false) {
gpr_event_init(&start_requests_);
}
virtual ~Client() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment