Simplify file_time_type to time_t conversion

macos_ci_fix
Andrei Kortunov 2 years ago
parent 6adcd122a8
commit 2ea7eb4ba8

@ -15,14 +15,11 @@ namespace Misc
{ {
inline std::time_t toTimeT(std::filesystem::file_time_type tp) inline std::time_t toTimeT(std::filesystem::file_time_type tp)
{ {
using namespace std::chrono; // Note: this conversion has a precision loss, so it should not be used in exact comparisons
#if __cpp_lib_chrono >= 201907 // or another cases when milliseconds matter.
const auto systemTime = clock_cast<system_clock>(tp); auto systemTime = time_point_cast<std::chrono::system_clock::duration>(
#else tp - std::filesystem::file_time_type::clock::now() + std::chrono::system_clock::now());
auto systemTime = time_point_cast<system_clock::duration>( return std::chrono::system_clock::to_time_t(systemTime);
tp - std::filesystem::file_time_type::clock::now() + system_clock::now());
#endif
return system_clock::to_time_t(systemTime);
} }
inline std::string timeTToString(const std::time_t tp, const char* fmt) inline std::string timeTToString(const std::time_t tp, const char* fmt)

Loading…
Cancel
Save