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 a468e6f [include-fixer] Add basic documentation. new 03a2247 [clang-tidy] Adds modernize-use-bool-literals 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/UseBoolLiteralsCheck.cpp | 55 ++++++++++ .../{UseAutoCheck.h => UseBoolLiteralsCheck.h} | 21 ++-- docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-use-bool-literals.rst | 18 +++ test/clang-tidy/modernize-use-bool-literals.cpp | 122 +++++++++++++++++++++ 8 files changed, 215 insertions(+), 11 deletions(-) create mode 100644 clang-tidy/modernize/UseBoolLiteralsCheck.cpp copy clang-tidy/modernize/{UseAutoCheck.h => UseBoolLiteralsCheck.h} (51%) create mode 100644 docs/clang-tidy/checks/modernize-use-bool-literals.rst create mode 100644 test/clang-tidy/modernize-use-bool-literals.cpp