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 d5c0bca6 [clangd] Append "(fix available)" to diagnostic message when [...] new 69229498 [clangd] A code action to swap branches of an if statement
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/SourceCode.cpp | 68 ++++++++++++- clangd/SourceCode.h | 41 ++++++++ clangd/refactor/tweaks/CMakeLists.txt | 3 +- clangd/refactor/tweaks/Dummy.cpp | 9 -- clangd/refactor/tweaks/SwapIfBranches.cpp | 132 +++++++++++++++++++++++++ unittests/clangd/CMakeLists.txt | 3 + unittests/clangd/TweakTests.cpp | 158 ++++++++++++++++++++++++++++++ 7 files changed, 401 insertions(+), 13 deletions(-) delete mode 100644 clangd/refactor/tweaks/Dummy.cpp create mode 100644 clangd/refactor/tweaks/SwapIfBranches.cpp create mode 100644 unittests/clangd/TweakTests.cpp