This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from 1821c7b8 [clangd] Remove override result handling logic from clangd new d6e779e0 [clangd] Cache FS stat() calls when building preamble.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clangd/CMakeLists.txt | 1 + clangd/ClangdServer.cpp | 13 ++---- clangd/ClangdUnit.cpp | 26 ++++++++---- clangd/ClangdUnit.h | 7 ++- clangd/CodeComplete.cpp | 27 +++++++----- clangd/CodeComplete.h | 8 ++-- clangd/FS.cpp | 92 ++++++++++++++++++++++++++++++++++++++++ clangd/FS.h | 65 ++++++++++++++++++++++++++++ unittests/clangd/CMakeLists.txt | 1 + unittests/clangd/ClangdTests.cpp | 65 ++++++++++++++++++++++++++++ unittests/clangd/FSTests.cpp | 46 ++++++++++++++++++++ unittests/clangd/TestFS.cpp | 1 + 12 files changed, 319 insertions(+), 33 deletions(-) create mode 100644 clangd/FS.cpp create mode 100644 clangd/FS.h create mode 100644 unittests/clangd/FSTests.cpp