fix missed reference to std::filesystem

This commit is contained in:
ohsqueezy 2024-04-18 00:14:55 -04:00
parent a1eef8017e
commit 87a946a61e
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ void Configuration::refresh()
message << "config file modified, reloading " << path;
sb::Log::log(message, sb::Log::DEBUG);
merge(path);
config_modification_time = std::filesystem::file_time_type::clock::now();
config_modification_time = fs::file_time_type::clock::now();
sb::Delegate::post("reconfig");
}
}