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 80993b85 [clangd] Return vector<TextEdit> from applyTweak. NFC new c9c0c01f [clang-tidy] Split fuchsia-default-arguments
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/fuchsia/CMakeLists.txt | 3 +- clang-tidy/fuchsia/DefaultArgumentsCallsCheck.cpp | 35 +++++++++++++ ...gumentsCheck.h => DefaultArgumentsCallsCheck.h} | 16 +++--- clang-tidy/fuchsia/DefaultArgumentsCheck.cpp | 61 ---------------------- .../fuchsia/DefaultArgumentsDeclarationsCheck.cpp | 54 +++++++++++++++++++ ...Check.h => DefaultArgumentsDeclarationsCheck.h} | 16 +++--- clang-tidy/fuchsia/FuchsiaTidyModule.cpp | 11 ++-- docs/ReleaseNotes.rst | 22 ++++++++ ...nts.rst => fuchsia-default-arguments-calls.rst} | 12 ++--- .../fuchsia-default-arguments-declarations.rst | 16 ++++++ docs/clang-tidy/checks/list.rst | 3 +- .../clang-tidy/fuchsia-default-arguments-calls.cpp | 36 +++++++++++++ ... => fuchsia-default-arguments-declarations.cpp} | 39 +++----------- 13 files changed, 203 insertions(+), 121 deletions(-) create mode 100644 clang-tidy/fuchsia/DefaultArgumentsCallsCheck.cpp copy clang-tidy/fuchsia/{DefaultArgumentsCheck.h => DefaultArgumentsCallsCheck.h} (75%) delete mode 100644 clang-tidy/fuchsia/DefaultArgumentsCheck.cpp create mode 100644 clang-tidy/fuchsia/DefaultArgumentsDeclarationsCheck.cpp rename clang-tidy/fuchsia/{DefaultArgumentsCheck.h => DefaultArgumentsDeclarations [...] rename docs/clang-tidy/checks/{fuchsia-default-arguments.rst => fuchsia-default-ar [...] create mode 100644 docs/clang-tidy/checks/fuchsia-default-arguments-declarations.rst create mode 100644 test/clang-tidy/fuchsia-default-arguments-calls.cpp rename test/clang-tidy/{fuchsia-default-arguments.cpp => fuchsia-default-arguments [...]