Commit dca00970 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by facebook-github-bot-1

Fix Build: address some maybe-uninitialized warnings in folly/io/async/EventBase.cpp

Summary: [Folly] Fix Build: address some `maybe-uninitialized` warnings in `folly/io/async/EventBase.cpp`.

Reviewed By: @meyering

Differential Revision: D2535753

fb-gh-sync-id: ff32f6957675d3b6d0267b1a59fb0c3aac4fe86e
parent edf5c731
...@@ -312,7 +312,7 @@ bool EventBase::loopBody(int flags) { ...@@ -312,7 +312,7 @@ bool EventBase::loopBody(int flags) {
// time-measurement variables. // time-measurement variables.
std::chrono::steady_clock::time_point prev; std::chrono::steady_clock::time_point prev;
int64_t idleStart; int64_t idleStart = 0;
int64_t busy; int64_t busy;
int64_t idle; int64_t idle;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment