Remove unused GetTimeSeconds

This commit is contained in:
MacroFake
2022-05-10 14:22:28 +02:00
parent 27d7b11e8c
commit fab9e8a29c
5 changed files with 21 additions and 20 deletions

View File

@@ -115,11 +115,6 @@ int64_t GetTimeMicros()
return int64_t{GetSystemTime<std::chrono::microseconds>().count()};
}
int64_t GetTimeSeconds()
{
return int64_t{GetSystemTime<std::chrono::seconds>().count()};
}
int64_t GetTime() { return GetTime<std::chrono::seconds>().count(); }
std::string FormatISO8601DateTime(int64_t nTime) {