summaryrefslogtreecommitdiff
path: root/src/common/fiber.h
diff options
context:
space:
mode:
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};