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 613396c9 [clangd] Bump vscode-clangd v0.0.18 new 43c0d016 [clang-tidy] New check to warn when storing dispatch_once_t i [...]
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/CMakeLists.txt | 1 + clang-tidy/ClangTidyForceLinker.h | 5 ++ clang-tidy/{zircon => darwin}/CMakeLists.txt | 7 +-- .../DarwinTidyModule.cpp} | 24 ++++----- clang-tidy/darwin/DispatchOnceNonstaticCheck.cpp | 62 ++++++++++++++++++++++ clang-tidy/darwin/DispatchOnceNonstaticCheck.h | 35 ++++++++++++ clang-tidy/plugin/CMakeLists.txt | 1 + clang-tidy/tool/CMakeLists.txt | 1 + clangd/CMakeLists.txt | 1 + docs/ReleaseNotes.rst | 6 +++ .../checks/darwin-dispatch-once-nonstatic.rst | 22 ++++++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/darwin-dispatch-once-nonstatic.mm | 48 +++++++++++++++++ 13 files changed, 199 insertions(+), 15 deletions(-) copy clang-tidy/{zircon => darwin}/CMakeLists.txt (54%) copy clang-tidy/{boost/BoostTidyModule.cpp => darwin/DarwinTidyModule.cpp} (53%) create mode 100644 clang-tidy/darwin/DispatchOnceNonstaticCheck.cpp create mode 100644 clang-tidy/darwin/DispatchOnceNonstaticCheck.h create mode 100644 docs/clang-tidy/checks/darwin-dispatch-once-nonstatic.rst create mode 100644 test/clang-tidy/darwin-dispatch-once-nonstatic.mm