mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-19 18:42:41 +00:00
Common/Tests: Address Feedback
This commit is contained in:
@@ -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{};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user