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 4c5d091e [clangd] Show documentation in hover, and fetch docs from ind [...] new c77999ac [clangd] Rewrite of logic to rebuild the background index ser [...]
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 | 3 +- clangd/ClangdServer.h | 4 - clangd/index/Background.cpp | 63 ++++---------- clangd/index/Background.h | 6 +- clangd/index/BackgroundRebuild.cpp | 137 ++++++++++++++++++++++++++++++ clangd/index/BackgroundRebuild.h | 99 +++++++++++++++++++++ clangd/test/background-index.test | 2 +- clangd/tool/ClangdMain.cpp | 9 -- clangd/unittests/BackgroundIndexTests.cpp | 108 +++++++++++++++-------- 10 files changed, 330 insertions(+), 102 deletions(-) create mode 100644 clangd/index/BackgroundRebuild.cpp create mode 100644 clangd/index/BackgroundRebuild.h