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 47fbc04 Trying to fix docs. new fbf7629 Support variables and functions types in misc-unused-using-decls. new 20c1ffc [clang-tidy] new google-default-arguments check
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/google/CMakeLists.txt | 1 + clang-tidy/google/DefaultArgumentsCheck.cpp | 36 +++++++++++++++ ...tConstructorCheck.h => DefaultArgumentsCheck.h} | 16 +++---- clang-tidy/google/GoogleTidyModule.cpp | 3 ++ clang-tidy/misc/UnusedUsingDeclsCheck.cpp | 32 +++++++++++--- clang-tidy/misc/UnusedUsingDeclsCheck.h | 2 + docs/ReleaseNotes.rst | 5 +++ .../clang-tidy/checks/google-default-arguments.rst | 8 ++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/google-default-arguments.cpp | 29 ++++++++++++ test/clang-tidy/misc-unused-using-decls.cpp | 51 ++++++++++++++++++++++ 11 files changed, 171 insertions(+), 13 deletions(-) create mode 100644 clang-tidy/google/DefaultArgumentsCheck.cpp copy clang-tidy/google/{ExplicitConstructorCheck.h => DefaultArgumentsCheck.h} (52%) create mode 100644 docs/clang-tidy/checks/google-default-arguments.rst create mode 100644 test/clang-tidy/google-default-arguments.cpp