[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / readability / named-parameter.rst
blob8d28c0aa02169a7cdb98cec4a87c0a2c72756b11
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
9 Guide:
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
14 implementation.
16 Corresponding cpplint.py check name: `readability/function`.