mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-08-28 06:56:29 -05:00
General: Fix clang build
Allows building on clang to work again
This commit is contained in:
@@ -41,8 +41,8 @@ public:
|
||||
Fiber(const Fiber&) = delete;
|
||||
Fiber& operator=(const Fiber&) = delete;
|
||||
|
||||
Fiber(Fiber&&) = default;
|
||||
Fiber& operator=(Fiber&&) = default;
|
||||
Fiber(Fiber&&) = delete;
|
||||
Fiber& operator=(Fiber&&) = delete;
|
||||
|
||||
/// Yields control from Fiber 'from' to Fiber 'to'
|
||||
/// Fiber 'from' must be the currently running fiber.
|
||||
|
Reference in New Issue
Block a user