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 b261e167 [clangd] Ignore implicit conversion-operator nodes in find refs. new 2ecf82e4 [clang-tidy] Check for dynamically initialized statics in headers.
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 + .../bugprone/DynamicStaticInitializersCheck.cpp | 68 ++++++++++++++++++++++ .../DynamicStaticInitializersCheck.h} | 24 +++----- docs/ReleaseNotes.rst | 7 ++- .../bugprone-dynamic-static-initializers.rst | 27 +++++++++ docs/clang-tidy/checks/list.rst | 1 + .../bugprone-dynamic-static-initializers.hpp | 44 ++++++++++++++ 8 files changed, 159 insertions(+), 16 deletions(-) create mode 100644 clang-tidy/bugprone/DynamicStaticInitializersCheck.cpp copy clang-tidy/{google/UnnamedNamespaceInHeaderCheck.h => bugprone/DynamicStaticI [...] create mode 100644 docs/clang-tidy/checks/bugprone-dynamic-static-initializers.rst create mode 100644 test/clang-tidy/bugprone-dynamic-static-initializers.hpp