fmt: Replace deprecated fmt::localtime usage with Common::LocalTime

This commit is contained in:
Joshua Vandaële
2025-06-04 13:12:50 +02:00
parent 1c9389a1fb
commit 4b65cc9a4c
9 changed files with 36 additions and 23 deletions

View File

@ -9,5 +9,5 @@
namespace Common
{
// Threadsafe and error-checking variant of std::localtime()
std::optional<std::tm> Localtime(std::time_t time);
std::optional<std::tm> LocalTime(std::time_t time);
} // Namespace Common