diff options
| author | 2020-11-03 11:00:23 -0800 | |
|---|---|---|
| committer | 2020-11-03 11:00:23 -0800 | |
| commit | 222fe75401f0672de78c07ba901e650ccc8aa96a (patch) | |
| tree | b3f29608f58df5bc86c502171a5f66e2692ec3d8 /src/common/fiber.h | |
| parent | Merge pull request #4878 from bunnei/unload-nrr (diff) | |
| parent | common: Enable warnings as errors (diff) | |
| download | yuzu-222fe75401f0672de78c07ba901e650ccc8aa96a.tar.gz yuzu-222fe75401f0672de78c07ba901e650ccc8aa96a.tar.xz yuzu-222fe75401f0672de78c07ba901e650ccc8aa96a.zip | |
Merge pull request #4873 from lioncash/common-error
common: 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 | ||