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 04d78f31 [clangd] Fixes for #include insertion. new 7bb4b1bc [clang-tidy] Replace the usage of std::uncaught_exception wit [...]
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 + .../modernize/UseUncaughtExceptionsCheck.cpp | 104 +++++++++++++++++++++ clang-tidy/modernize/UseUncaughtExceptionsCheck.h | 37 ++++++++ docs/ReleaseNotes.rst | 5 + docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-use-uncaught-exceptions.rst | 64 +++++++++++++ .../modernize-use-uncaught-exceptions.cpp | 79 ++++++++++++++++ 8 files changed, 294 insertions(+) create mode 100644 clang-tidy/modernize/UseUncaughtExceptionsCheck.cpp create mode 100644 clang-tidy/modernize/UseUncaughtExceptionsCheck.h create mode 100644 docs/clang-tidy/checks/modernize-use-uncaught-exceptions.rst create mode 100644 test/clang-tidy/modernize-use-uncaught-exceptions.cpp