From 8157678eba97d7de5c53b424a9866d327392bbd9 Mon Sep 17 00:00:00 2001 From: rtk0c Date: Mon, 31 May 2021 12:27:58 -0700 Subject: Fix standard incompetence found by MSVC - requires-expression still not working, because they aren't supported yet outside of a concept --- core/src/Utils/Time.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/src/Utils/Time.cpp') diff --git a/core/src/Utils/Time.cpp b/core/src/Utils/Time.cpp index bbdc313..9086e31 100644 --- a/core/src/Utils/Time.cpp +++ b/core/src/Utils/Time.cpp @@ -2,7 +2,7 @@ #include -std::string StringifyTimePoint(std::chrono::time_point tp) +std::string TimeUtils::StringifyTimePoint(std::chrono::time_point tp) { auto t = std::chrono::system_clock::to_time_t(tp); @@ -15,7 +15,7 @@ std::string StringifyTimePoint(std::chrono::time_point