1 .. title:: clang-tidy - readability-named-parameter
3 readability-named-parameter
4 ===========================
6 Find functions with unnamed arguments.
8 The check implements the following rule originating in the Google C++ Style
11 https://google.github.io/styleguide/cppguide.html#Function_Declarations_and_Definitions
13 All parameters should be named, with identical names in the declaration and
16 Corresponding cpplint.py check name: `readability/function`.