gpt4 book ai didi

Cppcheck 内联抑制不起作用

转载 作者:行者123 更新时间:2023-12-04 11:51:05 25 4
gpt4 key购买 nike

示例代码:

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.

我怎样才能抑制这个错误?

最佳答案

这边走:

class Foo {     
// cppcheck-suppress noExplicitConstructor
Foo(int foo) { }
};
它需要 --inline-suppr作为命令行参数。

关于Cppcheck 内联抑制不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37701104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com