summaryrefslogtreecommitdiffstats
path: root/src/common/fiber.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-02-10 20:02:04 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-18 22:29:22 +0200
commit49a7e0984a1210832b8be24433a95711c7ce029b (patch)
tree73cfc4456382895f75b6f56f5f1bb96501929de9 /src/common/fiber.cpp
parentCommon/Tests: Address Feedback (diff)
downloadyuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar
yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.gz
yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.bz2
yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.lz
yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.xz
yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.tar.zst
yuzu-49a7e0984a1210832b8be24433a95711c7ce029b.zip
Diffstat (limited to 'src/common/fiber.cpp')
-rw-r--r--src/common/fiber.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/fiber.cpp b/src/common/fiber.cpp
index 1220eddf0..e9c0946b6 100644
--- a/src/common/fiber.cpp
+++ b/src/common/fiber.cpp
@@ -110,7 +110,7 @@ Fiber::Fiber(std::function<void(void*)>&& entry_point_func, void* start_paramete
FiberStartFunc);
}
-Fiber::Fiber() : guard{}, entry_point{}, start_parameter{}, previous_fiber{} {
+Fiber::Fiber() {
impl = std::make_unique<FiberImpl>();
}