[clangd] Use TimePoint<> instead of system_clock::time_point, it does matter after all.

This commit is contained in:
Sam McCall 2020-11-25 12:49:18 +01:00
parent 2b6691894a
commit a38d13ed36
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ private:
// Time when the cache was known valid (reflected disk state).
mutable std::chrono::steady_clock::time_point ValidTime;
// Filesystem metadata corresponding to the currently cached data.
mutable std::chrono::system_clock::time_point ModifiedTime;
mutable llvm::sys::TimePoint<> ModifiedTime;
mutable uint64_t Size;
};