diff options
| author | 2020-10-30 15:02:02 -0400 | |
|---|---|---|
| committer | 2020-11-02 15:50:58 -0500 | |
| commit | 4a4b685a0420b0ac7c026cd2370c23d54f469976 (patch) | |
| tree | 8de9e9a72563a369dac5ec8183e417e40ee4b8bf /src/common/fiber.h | |
| parent | CMakeLists: Resolve MSVC build failures (diff) | |
| download | yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.gz yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.tar.xz yuzu-4a4b685a0420b0ac7c026cd2370c23d54f469976.zip | |
common: Enable warnings as errors
Cleans up common so that we can enable warnings as errors.
Diffstat (limited to 'src/common/fiber.h')
| -rw-r--r-- | src/common/fiber.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/fiber.h b/src/common/fiber.h index cefd61df9..699286ee2 100644 --- a/src/common/fiber.h +++ b/src/common/fiber.h | |||
| @@ -49,7 +49,7 @@ public: | |||
| 49 | static void YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to); | 49 | static void YieldTo(std::shared_ptr<Fiber> from, std::shared_ptr<Fiber> to); |
| 50 | [[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber(); | 50 | [[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber(); |
| 51 | 51 | ||
| 52 | void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* start_parameter); | 52 | void SetRewindPoint(std::function<void(void*)>&& rewind_func, void* rewind_param); |
| 53 | 53 | ||
| 54 | void Rewind(); | 54 | void Rewind(); |
| 55 | 55 | ||