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 ad8fac9e [clangd] NFC: Change quality type to float new c892e428 [clangd] Define a compact binary serialization fomat for symb [...]
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 | 2 + clangd/RIFF.cpp | 88 +++++ clangd/RIFF.h | 81 +++++ .../GlobalSymbolBuilderMain.cpp | 32 +- clangd/index/Index.cpp | 46 +-- clangd/index/Index.h | 41 ++- clangd/index/Serialization.cpp | 366 +++++++++++++++++++++ clangd/index/Serialization.h | 48 +++ clangd/index/SymbolYAML.cpp | 17 +- clangd/tool/ClangdMain.cpp | 1 + unittests/clangd/CMakeLists.txt | 2 + unittests/clangd/RIFFTests.cpp | 39 +++ unittests/clangd/SerializationTests.cpp | 138 ++++++++ unittests/clangd/SymbolCollectorTests.cpp | 79 ----- 14 files changed, 848 insertions(+), 132 deletions(-) create mode 100644 clangd/RIFF.cpp create mode 100644 clangd/RIFF.h create mode 100644 clangd/index/Serialization.cpp create mode 100644 clangd/index/Serialization.h create mode 100644 unittests/clangd/RIFFTests.cpp create mode 100644 unittests/clangd/SerializationTests.cpp