Skip to content
Snippets Groups Projects
Commit e267f86c authored by yang-g's avatar yang-g
Browse files

Properly init variable

parent 69848401
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,10 @@ class HistogramEntry GRPC_FINAL { ...@@ -129,7 +129,10 @@ class HistogramEntry GRPC_FINAL {
class Client { class Client {
public: public:
Client() : timer_(new UsageTimer), interarrival_timer_() { Client()
: timer_(new UsageTimer),
interarrival_timer_(),
started_requests_(false) {
gpr_event_init(&start_requests_); gpr_event_init(&start_requests_);
} }
virtual ~Client() {} virtual ~Client() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment