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 6609f826 [clangd] Merge binary + YAML serialization behind a (mostly) [...] new 3e33a5a4 [clang-tidy] Add modernize-concat-nested-namespaces check new bc7e0bfd [clang-tidy] use CHECK-NOTES in tests for bugprone-macro-repe [...]
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 + .../modernize/ConcatNestedNamespacesCheck.cpp | 113 +++++++++++++++ clang-tidy/modernize/ConcatNestedNamespacesCheck.h | 41 ++++++ clang-tidy/modernize/ModernizeTidyModule.cpp | 3 + docs/ReleaseNotes.rst | 11 +- docs/clang-tidy/checks/list.rst | 1 + .../checks/modernize-concat-nested-namespaces.rst | 49 +++++++ .../bugprone-macro-repeated-side-effects.c | 57 +++++--- .../modernize-concat-nested-namespaces.cpp | 161 +++++++++++++++++++++ 9 files changed, 416 insertions(+), 21 deletions(-) create mode 100644 clang-tidy/modernize/ConcatNestedNamespacesCheck.cpp create mode 100644 clang-tidy/modernize/ConcatNestedNamespacesCheck.h create mode 100644 docs/clang-tidy/checks/modernize-concat-nested-namespaces.rst create mode 100644 test/clang-tidy/modernize-concat-nested-namespaces.cpp