diff options
author | rtk0c <[email protected]> | 2021-05-31 12:27:58 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-05-31 12:27:58 -0700 |
commit | 8157678eba97d7de5c53b424a9866d327392bbd9 (patch) | |
tree | 26348a926040ccfc91f74cdfe49f7153db271f87 /core/src/Utils/Time.hpp | |
parent | eef2514908cdec3ec02888b7467cc877d33c1ceb (diff) |
Fix standard incompetence found by MSVC
- requires-expression still not working, because they aren't supported yet outside of a concept
Diffstat (limited to 'core/src/Utils/Time.hpp')
-rw-r--r-- | core/src/Utils/Time.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/Utils/Time.hpp b/core/src/Utils/Time.hpp index 13e12a1..fbbd3b2 100644 --- a/core/src/Utils/Time.hpp +++ b/core/src/Utils/Time.hpp @@ -3,5 +3,9 @@ #include <chrono> #include <string> +namespace TimeUtils { + std::string StringifyTimePoint(std::chrono::time_point<std::chrono::system_clock> tp); std::string StringifyTimeStamp(int64_t timeStamp); + +} // namespace TimeUtils |