diff options
author | HampusM <hampus@hampusmat.com> | 2022-03-29 17:40:04 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:57 +0200 |
commit | a039c8ad36779903571419cb06cd052f8fc41512 (patch) | |
tree | 4fdced6941a048bdd4b032fab7012bca00a6028e /src/game/generation_tracker.hpp | |
parent | acf72075ed32e5a679d49ffedc0c28d8ac2aea8b (diff) |
refactor: use trailing return types
Diffstat (limited to 'src/game/generation_tracker.hpp')
-rw-r--r-- | src/game/generation_tracker.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/generation_tracker.hpp b/src/game/generation_tracker.hpp index 0e59751..bd15a3e 100644 --- a/src/game/generation_tracker.hpp +++ b/src/game/generation_tracker.hpp @@ -9,9 +9,9 @@ class GenerationTracker : public IGenerationTracker public: explicit GenerationTracker(bool is_paused) noexcept; - [[nodiscard]] uint32_t get_current_generation() const noexcept override; + [[nodiscard]] auto get_current_generation() const noexcept -> uint32_t override; - [[nodiscard]] bool get_is_paused() const noexcept override; + [[nodiscard]] auto get_is_paused() const noexcept -> bool override; void set_is_paused(bool is_paused) noexcept override; |