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
commit 4b65cc9a4c
No known key found for this signature in database
GPG key ID: 5E8F4E7EDBD390EA
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