示例代码:
class Foo {
// cppcheck-suppress noExplicitConstructor
Foo(int foo) { }
}
Cppcheck致电:
$ cppcheck.exe --enable=all foo.cpp
Checking foo.cpp...
[foo.cpp:3]: (style) Class 'Foo' has a constructor with 1 argument that is not explicit.
如何抑制此错误?
答案 0 :(得分:2)
这样:
class Foo {
// cppcheck-suppress noExplicitConstructor
Foo(int foo) { }
};
它需要--inline-suppr作为命令行参数。