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 97e425e7 [clangd] Fix crash hovering on non-decltype trailing return new b51f7061 [clang-tidy/checks] Implement a clang-tidy check to verify Go [...]
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/google/CMakeLists.txt | 1 + clang-tidy/google/FunctionNamingCheck.cpp | 121 +++++++++++++++++++++ clang-tidy/google/FunctionNamingCheck.h | 43 ++++++++ clang-tidy/google/GoogleTidyModule.cpp | 3 + docs/ReleaseNotes.rst | 6 + .../checks/google-objc-function-naming.rst | 27 +++++ docs/clang-tidy/checks/list.rst | 1 + test/clang-tidy/google-objc-function-naming.m | 52 +++++++++ 8 files changed, 254 insertions(+) create mode 100644 clang-tidy/google/FunctionNamingCheck.cpp create mode 100644 clang-tidy/google/FunctionNamingCheck.h create mode 100644 docs/clang-tidy/checks/google-objc-function-naming.rst create mode 100644 test/clang-tidy/google-objc-function-naming.m