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 ae15a31d add ID as a special acronym to objc property declaration chec [...] new 500154a5 [clang-tidy] fix minor formatting issue new 161cd829 [clang-tidy] implement check for goto
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: clang-tidy/cppcoreguidelines/AvoidGotoCheck.cpp | 55 ++++++++ ...nterfacesGlobalInitCheck.h => AvoidGotoCheck.h} | 19 +-- clang-tidy/cppcoreguidelines/CMakeLists.txt | 1 + .../CppCoreGuidelinesTidyModule.cpp | 3 + clang-tidy/hicpp/HICPPTidyModule.cpp | 6 +- docs/ReleaseNotes.rst | 12 ++ .../checks/cppcoreguidelines-avoid-goto.rst | 50 ++++++++ docs/clang-tidy/checks/hicpp-avoid-goto.rst | 12 ++ docs/clang-tidy/checks/list.rst | 2 + test/clang-tidy/cppcoreguidelines-avoid-goto.cpp | 139 +++++++++++++++++++++ 10 files changed, 288 insertions(+), 11 deletions(-) create mode 100644 clang-tidy/cppcoreguidelines/AvoidGotoCheck.cpp copy clang-tidy/cppcoreguidelines/{InterfacesGlobalInitCheck.h => AvoidGotoCheck.h} (56%) create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-avoid-goto.rst create mode 100644 docs/clang-tidy/checks/hicpp-avoid-goto.rst create mode 100644 test/clang-tidy/cppcoreguidelines-avoid-goto.cpp