summaryrefslogtreecommitdiffstats
path: root/src/common/fiber.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-11-06 19:33:13 +0100
committerGitHub <noreply@github.com>2020-11-06 19:33:13 +0100
commit91a45834fd10620a9c3bb567183682a9e6a88217 (patch)
tree162d9bc5ac1b219f9534374a6c6e75a202aca6dd /src/common/fiber.h
parentMerge pull request #4894 from lioncash/fn (diff)
parentGeneral: Fix clang build (diff)
downloadyuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar
yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.gz
yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.bz2
yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.lz
yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.xz
yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.tar.zst
yuzu-91a45834fd10620a9c3bb567183682a9e6a88217.zip
Diffstat (limited to 'src/common/fiber.h')
-rw-r--r--src/common/fiber.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/fiber.h b/src/common/fiber.h
index 699286ee2..1a027be96 100644
--- a/src/common/fiber.h
+++ b/src/common/fiber.h
@@ -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.