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 33b36d3d [Clangd] ExtractFunction: Don't extract body of enclosing function. new 9323f466 Add the misc-init-local-variables check.
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: clang-tidy/cppcoreguidelines/CMakeLists.txt | 1 + .../CppCoreGuidelinesTidyModule.cpp | 3 + .../cppcoreguidelines/InitVariablesCheck.cpp | 105 +++++++++++++++++++++ ...stantArrayIndexCheck.h => InitVariablesCheck.h} | 30 +++--- docs/ReleaseNotes.rst | 15 +-- .../checks/cppcoreguidelines-init-variables.rst | 51 ++++++++++ docs/clang-tidy/checks/list.rst | 1 + .../cppcoreguidelines-init-variables.cpp | 80 ++++++++++++++++ 8 files changed, 265 insertions(+), 21 deletions(-) create mode 100644 clang-tidy/cppcoreguidelines/InitVariablesCheck.cpp copy clang-tidy/cppcoreguidelines/{ProBoundsConstantArrayIndexCheck.h => InitVaria [...] create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-init-variables.rst create mode 100644 test/clang-tidy/cppcoreguidelines-init-variables.cpp