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 6f11cc03 [clang-tidy] Allow disabling compatibility check for generate [...] new 20b8d6f0 [clang-tidy] Add new cert-dcl21-cpp 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/cert/CERTTidyModule.cpp | 3 + clang-tidy/cert/CMakeLists.txt | 1 + clang-tidy/cert/PostfixOperatorCheck.cpp | 88 ++++++++++++++ ...jectExceptionCheck.h => PostfixOperatorCheck.h} | 18 +-- docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/cert-dcl21-cpp.rst | 12 ++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/cert-dcl21-cpp.cpp | 134 +++++++++++++++++++++ 8 files changed, 253 insertions(+), 9 deletions(-) create mode 100644 clang-tidy/cert/PostfixOperatorCheck.cpp copy clang-tidy/cert/{StaticObjectExceptionCheck.h => PostfixOperatorCheck.h} (54%) create mode 100644 docs/clang-tidy/checks/cert-dcl21-cpp.rst create mode 100644 test/clang-tidy/cert-dcl21-cpp.cpp