Common/Tests: Address Feedback

This commit is contained in:
Fernando Sahmkow
2020-02-10 14:45:08 -04:00
parent 3398f701ee
commit 1f7dd36499
9 changed files with 51 additions and 39 deletions

View File

@ -67,10 +67,10 @@ private:
struct FiberImpl;
SpinLock guard;
std::function<void(void*)> entry_point;
void* start_parameter;
std::shared_ptr<Fiber> previous_fiber;
SpinLock guard{};
std::function<void(void*)> entry_point{};
void* start_parameter{};
std::shared_ptr<Fiber> previous_fiber{};
std::unique_ptr<FiberImpl> impl;
bool is_thread_fiber{};
};