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 b2ce898d [clangd] Support URISchemes configuration in BackgroundIndex. new aeca2036 [clang-tidy] implement cppcoreguidelines macro rules
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/cppcoreguidelines/CMakeLists.txt | 1 + .../CppCoreGuidelinesTidyModule.cpp | 3 + clang-tidy/cppcoreguidelines/MacroUsageCheck.cpp | 95 ++++++++++++++++++++++ clang-tidy/cppcoreguidelines/MacroUsageCheck.h | 48 +++++++++++ docs/ReleaseNotes.rst | 6 ++ .../checks/cppcoreguidelines-macro-usage.rst | 28 +++++++ docs/clang-tidy/checks/list.rst | 1 + .../cppcoreguidelines-macro-usage-caps-only.cpp | 24 ++++++ .../cppcoreguidelines-macro-usage-custom.cpp | 28 +++++++ test/clang-tidy/cppcoreguidelines-macro-usage.cpp | 18 ++++ 10 files changed, 252 insertions(+) create mode 100644 clang-tidy/cppcoreguidelines/MacroUsageCheck.cpp create mode 100644 clang-tidy/cppcoreguidelines/MacroUsageCheck.h create mode 100644 docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst create mode 100644 test/clang-tidy/cppcoreguidelines-macro-usage-caps-only.cpp create mode 100644 test/clang-tidy/cppcoreguidelines-macro-usage-custom.cpp create mode 100644 test/clang-tidy/cppcoreguidelines-macro-usage.cpp