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 f9d019da [clangd] Fix tracing now that spans lifetimes can overlap on [...] new e674d5c1 [clang-tidy] New checker for exceptions that are created but [...]
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/ThrowKeywordMissingCheck.cpp | 52 +++++++ ...rDivisionCheck.h => ThrowKeywordMissingCheck.h} | 18 +-- docs/ReleaseNotes.rst | 5 + .../checks/bugprone-throw-keyword-missing.rst | 20 +++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/bugprone-throw-keyword-missing.cpp | 167 +++++++++++++++++++++ 8 files changed, 258 insertions(+), 9 deletions(-) create mode 100644 clang-tidy/bugprone/ThrowKeywordMissingCheck.cpp copy clang-tidy/bugprone/{IntegerDivisionCheck.h => ThrowKeywordMissingCheck.h} (50%) create mode 100644 docs/clang-tidy/checks/bugprone-throw-keyword-missing.rst create mode 100644 test/clang-tidy/bugprone-throw-keyword-missing.cpp