Attempt to check why some files are missing

This commit is contained in:
emeric
2020-02-19 13:35:31 +01:00
parent 0663ddb41a
commit 428ab70d27
9 changed files with 41 additions and 7 deletions
+7
View File
@@ -34,3 +34,10 @@ bool ensureDirectory(const std::filesystem::path& dir);
// Get the last write time since Epoch
Wt::WDateTime getLastWriteTime(const std::filesystem::path& dir);
namespace std {
template <>
struct hash<std::filesystem::path> {
inline std::size_t operator()(const std::filesystem::path &path) const { return hash_value(path); }
};
}