summaryrefslogtreecommitdiff
path: root/src/common/fiber.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-02-10 14:45:08 -0400
committerGravatar Fernando Sahmkow2020-06-18 16:29:21 -0400
commit1f7dd36499786d373b143a4437d4c32e077a32aa (patch)
tree26d21b113d85c6630f3ff67f7affc7c1b6f508a5 /src/common/fiber.h
parentCommon: Make MinGW build use Windows Fibers instead of fcontext_t (diff)
downloadyuzu-1f7dd36499786d373b143a4437d4c32e077a32aa.tar.gz
yuzu-1f7dd36499786d373b143a4437d4c32e077a32aa.tar.xz
yuzu-1f7dd36499786d373b143a4437d4c32e077a32aa.zip
Common/Tests: Address Feedback
Diffstat (limited to 'src/common/fiber.h')
-rw-r--r--src/common/fiber.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/fiber.h b/src/common/fiber.h
index 598fe7daa..7e3b130a4 100644
--- a/src/common/fiber.h
+++ b/src/common/fiber.h
@@ -67,10 +67,10 @@ private:
67 67
68 struct FiberImpl; 68 struct FiberImpl;
69 69
70 SpinLock guard; 70 SpinLock guard{};
71 std::function<void(void*)> entry_point; 71 std::function<void(void*)> entry_point{};
72 void* start_parameter; 72 void* start_parameter{};
73 std::shared_ptr<Fiber> previous_fiber; 73 std::shared_ptr<Fiber> previous_fiber{};
74 std::unique_ptr<FiberImpl> impl; 74 std::unique_ptr<FiberImpl> impl;
75 bool is_thread_fiber{}; 75 bool is_thread_fiber{};
76}; 76};