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 0912716e [clang-tidy] Move more checks from misc- to performance- new 5e3c1f4f Add a new clang-tidy module for Fuchsia as an umbrella to dia [...]
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/{boost => fuchsia}/CMakeLists.txt | 6 +- clang-tidy/fuchsia/DefaultArgumentsCheck.cpp | 64 +++++++++++++++++ .../{google => fuchsia}/DefaultArgumentsCheck.h | 15 ++-- .../FuchsiaTidyModule.cpp} | 27 ++++---- clang-tidy/tool/CMakeLists.txt | 1 + clang-tidy/tool/ClangTidyMain.cpp | 5 ++ docs/ReleaseNotes.rst | 7 +- .../checks/fuchsia-default-arguments.rst | 24 +++++++ docs/clang-tidy/checks/list.rst | 1 + docs/clang-tidy/index.rst | 1 + test/clang-tidy/fuchsia-default-arguments.cpp | 81 ++++++++++++++++++++++ 12 files changed, 209 insertions(+), 24 deletions(-) copy clang-tidy/{boost => fuchsia}/CMakeLists.txt (59%) create mode 100644 clang-tidy/fuchsia/DefaultArgumentsCheck.cpp copy clang-tidy/{google => fuchsia}/DefaultArgumentsCheck.h (63%) copy clang-tidy/{boost/BoostTidyModule.cpp => fuchsia/FuchsiaTidyModule.cpp} (52%) create mode 100644 docs/clang-tidy/checks/fuchsia-default-arguments.rst create mode 100644 test/clang-tidy/fuchsia-default-arguments.cpp