readability-avoid-const-params-in-decls

检查函数声明中是否包含顶层 const 的参数。

声明中的 const 值不会影响函数的签名,因此不应该放在这里。

示例

void f(const string);   // Bad: const is top level.
void f(const string&);  // Good: const is not top level.

选项

IgnoreMacros

如果设置为 true,则检查不会在宏中给出警告。默认值为 true