readability-named-parameter¶
查找具有未命名参数的函数。
该检查实现了源自 Google C++ 样式指南的以下规则
https://google.github.io/styleguide/cppguide.html#Function_Declarations_and_Definitions
所有参数在函数声明和定义中都应具有相同的名称。如果未利用参数,则可以在函数定义中将其名称注释掉。
int doingSomething(int a, int b, int c);
int doingSomething(int a, int b, int /*c*/) {
// Ok: the third param is not used
return a + b;
}
相应的 cpplint.py 检查名称:readability/function。