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 8032c6b8 [clang-tidy] Sort includes; NFC new 016f7958 [clang-tidy] Check if grand-..parent's virtual method was cal [...]
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/bugprone/ParentVirtualCallCheck.cpp | 154 ++++++++++++++++++ ...{UnusedRaiiCheck.h => ParentVirtualCallCheck.h} | 16 +- docs/ReleaseNotes.rst | 6 + .../checks/bugprone-parent-virtual-call.rst | 23 +++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/bugprone-parent-virtual-call.cpp | 179 +++++++++++++++++++++ 8 files changed, 375 insertions(+), 8 deletions(-) create mode 100755 clang-tidy/bugprone/ParentVirtualCallCheck.cpp copy clang-tidy/bugprone/{UnusedRaiiCheck.h => ParentVirtualCallCheck.h} (54%) mode change 100644 => 100755 create mode 100755 docs/clang-tidy/checks/bugprone-parent-virtual-call.rst create mode 100755 test/clang-tidy/bugprone-parent-virtual-call.cpp