Skip to content

Commit

Permalink
[clangd] Use TimePoint<> instead of system_clock::time_point, it does…
Browse files Browse the repository at this point in the history
… matter after all.
  • Loading branch information
sam-mccall committed Nov 25, 2020
1 parent 2b66918 commit a38d13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang-tools-extra/clangd/support/FileCache.h
Expand Up @@ -71,7 +71,7 @@ class FileCache {
// 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;
};

Expand Down

0 comments on commit a38d13e

Please sign in to comment.