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 ecb55af7 [clangd] Switch xrefs and documenthighlight to annotated-code [...] new bf3c9d97 [clangd] Remove an unused lambda capture. new 3565d1a1 [clangd] Pull CodeCompletionString handling logic into its ow [...]
The 2 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/CodeComplete.cpp | 224 ++---------------------- clangd/CodeCompletionStrings.cpp | 188 ++++++++++++++++++++ clangd/CodeCompletionStrings.h | 46 +++++ unittests/clangd/Annotations.cpp | 2 +- unittests/clangd/CMakeLists.txt | 1 + unittests/clangd/CodeCompleteTests.cpp | 2 +- unittests/clangd/CodeCompletionStringsTests.cpp | 142 +++++++++++++++ 8 files changed, 394 insertions(+), 212 deletions(-) create mode 100644 clangd/CodeCompletionStrings.cpp create mode 100644 clangd/CodeCompletionStrings.h create mode 100644 unittests/clangd/CodeCompletionStringsTests.cpp