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 e6af186b [clangd] Fix compilation database detection new 739efa62 add new check for property declaration
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/objc/CMakeLists.txt | 1 + clang-tidy/objc/ObjCTidyModule.cpp | 3 + clang-tidy/objc/PropertyDeclarationCheck.cpp | 115 +++++++++++++++++++++ ...bclassingCheck.h => PropertyDeclarationCheck.h} | 24 +++-- docs/ReleaseNotes.rst | 7 ++ .../google-objc-global-variable-declaration.rst | 7 +- docs/clang-tidy/checks/list.rst | 3 +- .../checks/objc-property-declaration.rst | 43 ++++++++ test/clang-tidy/objc-property-declaration-custom.m | 14 +++ test/clang-tidy/objc-property-declaration.m | 12 +++ 10 files changed, 216 insertions(+), 13 deletions(-) create mode 100644 clang-tidy/objc/PropertyDeclarationCheck.cpp copy clang-tidy/objc/{ForbiddenSubclassingCheck.h => PropertyDeclarationCheck.h} (50%) create mode 100644 docs/clang-tidy/checks/objc-property-declaration.rst create mode 100644 test/clang-tidy/objc-property-declaration-custom.m create mode 100644 test/clang-tidy/objc-property-declaration.m