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 bab08db6 [clang-tidy] add_new_check.py updates ReleaseNotes.rst now new b3737b6f [clang-tidy] Add new modernize use unary assert 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/modernize/CMakeLists.txt | 1 + clang-tidy/modernize/ModernizeTidyModule.cpp | 3 ++ clang-tidy/modernize/UnaryStaticAssertCheck.cpp | 45 ++++++++++++++++++++++ .../{AvoidBindCheck.h => UnaryStaticAssertCheck.h} | 20 +++++----- docs/ReleaseNotes.rst | 6 +++ docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-unary-static-assert.rst | 25 ++++++++++++ test/clang-tidy/modernize-unary-static-assert.cpp | 25 ++++++++++++ 8 files changed, 116 insertions(+), 10 deletions(-) create mode 100644 clang-tidy/modernize/UnaryStaticAssertCheck.cpp copy clang-tidy/modernize/{AvoidBindCheck.h => UnaryStaticAssertCheck.h} (53%) create mode 100644 docs/clang-tidy/checks/modernize-unary-static-assert.rst create mode 100644 test/clang-tidy/modernize-unary-static-assert.cpp