diff options
| author | 2020-11-04 20:41:16 -0500 | |
|---|---|---|
| committer | 2020-11-05 10:07:16 -0500 | |
| commit | 6f006d051e1fad075048ea5664e1ef0605e48a46 (patch) | |
| tree | 47fbdd1225fabbd0c1abb05bb8ebd5a02632ce02 /src/common/fiber.h | |
| parent | Merge pull request #4889 from lioncash/setting-global (diff) | |
| download | yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.gz yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.tar.xz yuzu-6f006d051e1fad075048ea5664e1ef0605e48a46.zip | |
General: Fix clang build
Allows building on clang to work again
Diffstat (limited to 'src/common/fiber.h')
| -rw-r--r-- | src/common/fiber.h | 4 |
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: | |||
| 41 | Fiber(const Fiber&) = delete; | 41 | Fiber(const Fiber&) = delete; |
| 42 | Fiber& operator=(const Fiber&) = delete; | 42 | Fiber& operator=(const Fiber&) = delete; |
| 43 | 43 | ||
| 44 | Fiber(Fiber&&) = default; | 44 | Fiber(Fiber&&) = delete; |
| 45 | Fiber& operator=(Fiber&&) = default; | 45 | Fiber& operator=(Fiber&&) = delete; |
| 46 | 46 | ||
| 47 | /// Yields control from Fiber 'from' to Fiber 'to' | 47 | /// Yields control from Fiber 'from' to Fiber 'to' |
| 48 | /// Fiber 'from' must be the currently running fiber. | 48 | /// Fiber 'from' must be the currently running fiber. |