gpt4 book ai didi

cppcheck - 抑制来自一行的多个警告?

转载 作者:行者123 更新时间:2023-12-02 09:34:26 27 4
gpt4 key购买 nike

我有一个驱动 cppcheck 坚果的代码片段,因为它没有看到日志调用中使用的变量。所以我得到了未使用的变量和范围缩减警告:

    double start = GetTimeOfDayDoubleSec(), afterDb = 0;
if (LoadFromDatabase(serials)) {
afterDb = GetTimeOfDayDoubleSec();
Cache.ResetDebugFlags(serials);
}
double end = GetTimeOfDayDoubleSec();
ZLOG_INFO("DB time %f, total %f", afterDb ? afterDb - start : 0, end - start);

Cppcheck 说:
The scope of the variable 'afterDb' can be reduced.
Variable 'afterDb' is assigned a value that is never used.

我无法计算出抑制这两种情况的语法,而且手册也无济于事。分隔行、空格、逗号、冒号和分号都失败。单独的行给我“抑制不匹配”,其余的都是无效的:
    //cppcheck-suppress variableScope
//cppcheck-suppress unreadVariable
//cppcheck-suppress variableScope unreadVariable
//cppcheck-suppress variableScope,unreadVariable
//cppcheck-suppress variableScope;unreadVariable
double afterDb = 0;

Failed to add suppression. Invalid id "variableScope:unreadVariable"

cppcheck 是否允许我内联执行此操作,还是必须在命令行上使用 XML 执行此操作?

cppcheck-gui toolbar

抱歉,事实证明存在一个令人困惑的问题:在 cppcheck-gui 中点击“刷新”并不会刷新所有内容,我必须重新加载 cppcheck 文件才能获得更新抑制的更改。即,工具栏上的“打开文件”图标而不是右侧的“刷新”图标。

事实证明,空间分隔有效:
//cppcheck-suppress variableScope unreadVariable

最佳答案

空间分隔确实有效:

//cppcheck-suppress variableScope unreadVariable

这被在 cppcheck-gui 中点击“刷新”实际上并没有刷新所有内容的问题所隐藏,我必须重新加载 cppcheck 文件。

关于cppcheck - 抑制来自一行的多个警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28533641/

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