Core/Spells: Fixed gcc 14 build

This commit is contained in:
Shauren
2024-05-23 22:32:15 +02:00
parent e516707410
commit 0fb81435bc
4 changed files with 12 additions and 2 deletions

View File

@@ -68,13 +68,13 @@ namespace GameTime
}
template<>
TC_GAME_API SystemTimePoint GetTime<std::chrono::system_clock>()
SystemTimePoint GetTime<std::chrono::system_clock>()
{
return GetSystemTime();
}
template<>
TC_GAME_API TimePoint GetTime<std::chrono::steady_clock>()
TimePoint GetTime<std::chrono::steady_clock>()
{
return Now();
}