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.cpp | |
parent | acf72075ed32e5a679d49ffedc0c28d8ac2aea8b (diff) |
refactor: use trailing return types
Diffstat (limited to 'src/game/generation_tracker.cpp')
-rw-r--r-- | src/game/generation_tracker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/generation_tracker.cpp b/src/game/generation_tracker.cpp index 0e137cb..0a7a923 100644 --- a/src/game/generation_tracker.cpp +++ b/src/game/generation_tracker.cpp @@ -2,12 +2,12 @@ GenerationTracker::GenerationTracker(bool is_paused) noexcept : _is_paused(is_paused) {} -uint32_t GenerationTracker::get_current_generation() const noexcept +auto GenerationTracker::get_current_generation() const noexcept -> uint32_t { return _current_generation; } -bool GenerationTracker::get_is_paused() const noexcept +auto GenerationTracker::get_is_paused() const noexcept -> bool { return _is_paused; } |