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 7145b91d [clang-tidy] SimplifyBoolenExpr doesn't add parens if unary n [...] new 27932c0b [clang-tidy] new cppcoreguidelines-narrowing-conversions 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/bugprone/BugproneTidyModule.cpp | 3 + clang-tidy/bugprone/CMakeLists.txt | 1 + clang-tidy/cppcoreguidelines/CMakeLists.txt | 1 + .../CppCoreGuidelinesTidyModule.cpp | 3 + .../NarrowingConversionsCheck.cpp | 70 ++++++++++++++ ...obalInitCheck.h => NarrowingConversionsCheck.h} | 18 ++-- docs/ReleaseNotes.rst | 5 + .../cppcoreguidelines-narrowing-conversions.rst | 22 +++++ docs/clang-tidy/checks/list.rst | 1 + .../cppcoreguidelines-narrowing-conversions.cpp | 103 +++++++++++++++++++++ 10 files changed, 219 insertions(+), 8 deletions(-) create mode 100644 clang-tidy/cppcoreguidelines/NarrowingConversionsCheck.cpp copy clang-tidy/cppcoreguidelines/{InterfacesGlobalInitCheck.h => NarrowingConvers [...] create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-narrowing-conversions.rst create mode 100644 test/clang-tidy/cppcoreguidelines-narrowing-conversions.cpp