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 7227430 [clangd] Synchronize logs access. new 0ae386f [clangd] Silence GCC warning about falling off a fully covere [...] new fc86ad8 [clangd] Fix another use after free that I missed because COW [...] new 929f8cc [clang-tidy] Add check 'modernize-return-braced-init-list'
The 3 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: clang-tidy/modernize/CMakeLists.txt | 1 + clang-tidy/modernize/ModernizeTidyModule.cpp | 3 + clang-tidy/modernize/ReturnBracedInitListCheck.cpp | 97 ++++++++++ ...voidBindCheck.h => ReturnBracedInitListCheck.h} | 20 +-- clangd/ASTManager.cpp | 1 + clangd/ProtocolHandlers.cpp | 2 +- docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-return-braced-init-list.rst | 22 +++ .../modernize-return-braced-init-list.cpp | 199 +++++++++++++++++++++ 10 files changed, 341 insertions(+), 11 deletions(-) create mode 100644 clang-tidy/modernize/ReturnBracedInitListCheck.cpp copy clang-tidy/modernize/{AvoidBindCheck.h => ReturnBracedInitListCheck.h} (51%) create mode 100644 docs/clang-tidy/checks/modernize-return-braced-init-list.rst create mode 100644 test/clang-tidy/modernize-return-braced-init-list.cpp