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 9f23fe8 [change-namespace] correctly shorten namespace when reference [...] new 620c212 Implement a new clang-tidy check that suggests users replace [...] new 7434e51 Correcting a typo in the test case to appease bots.
The 2 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 | 2 + clang-tidy/modernize/UseNoexceptCheck.cpp | 114 +++++++++++++++++++++ .../{UseEmplaceCheck.h => UseNoexceptCheck.h} | 37 ++++--- docs/ReleaseNotes.rst | 5 +- docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/checks/modernize-use-noexcept.rst | 90 ++++++++++++++++ test/clang-tidy/modernize-use-noexcept-macro.cpp | 36 +++++++ test/clang-tidy/modernize-use-noexcept-opt.cpp | 88 ++++++++++++++++ test/clang-tidy/modernize-use-noexcept.cpp | 104 +++++++++++++++++++ 10 files changed, 461 insertions(+), 17 deletions(-) create mode 100644 clang-tidy/modernize/UseNoexceptCheck.cpp copy clang-tidy/modernize/{UseEmplaceCheck.h => UseNoexceptCheck.h} (50%) create mode 100644 docs/clang-tidy/checks/modernize-use-noexcept.rst create mode 100644 test/clang-tidy/modernize-use-noexcept-macro.cpp create mode 100644 test/clang-tidy/modernize-use-noexcept-opt.cpp create mode 100644 test/clang-tidy/modernize-use-noexcept.cpp