misc: fix warning about iso strings

This commit is contained in:
Vaxry 2024-03-05 23:33:28 +00:00
parent f0bcadc6ad
commit 7d5cb1dbb3
1 changed files with 2 additions and 2 deletions

View File

@ -887,9 +887,9 @@ zwlr_screencopy_manager_v1* CHyprlock::getScreencopy() {
void CHyprlock::attemptRestoreOnDeath() {
// dirty hack
uint64_t timeNowMs = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now() - std::chrono::system_clock::from_time_t({0})).count();
uint64_t timeNowMs = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::system_clock::now() - std::chrono::system_clock::from_time_t({0})).count();
constexpr char* LASTRESTARTPATH = "/tmp/hypr/.hyprlockrestart";
constexpr const char* LASTRESTARTPATH = "/tmp/hypr/.hyprlockrestart";
if (std::filesystem::exists(LASTRESTARTPATH)) {
std::ifstream ifs(LASTRESTARTPATH);