aboutsummaryrefslogtreecommitdiff
path: root/src/game/generation_tracker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/generation_tracker.cpp')
-rw-r--r--src/game/generation_tracker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/generation_tracker.cpp b/src/game/generation_tracker.cpp
index 15b4ce4..1a90d6b 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) {}
-auto GenerationTracker::get_current_generation() const noexcept -> uint32_t
+auto GenerationTracker::get_current_generation() const noexcept -> std::uint32_t
{
return _current_generation;
}
-void GenerationTracker::set_current_generation(uint32_t current_generation) noexcept
+void GenerationTracker::set_current_generation(std::uint32_t current_generation) noexcept
{
_current_generation = current_generation;
}