Commit a38d13ed authored by Sam McCall's avatar Sam McCall
Browse files

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

parent 2b669189
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
};