5

我有一个通过 cmake 使用 clang-tidy 的构建:

set_target_properties(project
    PROPERTIES
    ...
    CXX_CLANG_TIDY
        "/usr/bin/clang-tidy"
        "-checks=modernize-*,readability-*,performance-*"
        "-fix"
)

在构建它时,我在 Qt 库中遇到了可能的内存泄漏:

/opt/Qt5.7.0/5.7/gcc_64/include/QtCore/qobject.h:242:16: warning: Potential memory leak [clang-analyzer-cplusplus.NewDeleteLeaks]
        return connectImpl(sender, reinterpret_cast<void **>(&signal),
               ^
.../a.cpp:27:5: note: Taking false branch
    if (not inputQFile.makeAbsolute()) {
    ^
.../a.cpp:33:5: note: Calling 'QObject::connect'
    connect(this, static_cast<void (QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished),
    ^
/opt/Qt5.7.0/5.7/gcc_64/include/QtCore/qobject.h:238:13: note: Left side of '||' is false
        if (type == Qt::QueuedConnection || type == Qt::BlockingQueuedConnection)
            ^
/opt/Qt5.7.0/5.7/gcc_64/include/QtCore/qobject.h:238:9: note: Taking false branch
        if (type == Qt::QueuedConnection || type == Qt::BlockingQueuedConnection)
        ^
/opt/Qt5.7.0/5.7/gcc_64/include/QtCore/qobject.h:242:16: note: Potential memory leak
        return connectImpl(sender, reinterpret_cast<void **>(&signal),
               ^

我怎样才能让这个静音?

我已经尝试过的:

  1. 在 a.cpp:33 末尾添加 a // NOLINT-> 无效
  2. 在 qobject.h:242 的末尾添加 a // NOLINT-> 无效
  3. 将 qobject.h:242 包裹在一个#ifndef __clang_analyzer__-> 没有效果
  4. 将所有 qobject.h 包裹在一个#ifndef __clang_analyzer__-> 没有效果
  5. 添加// NOLINT到 connectImpl 的所有行 -> clang-tidy crashs

@Tarod:这是我目前拥有的:

#ifndef __clang_analyzer__
        return connectImpl(sender, reinterpret_cast<void **>(&signal),
                           receiver, reinterpret_cast<void **>(&slot),
                           new QtPrivate::QSlotObject<Func2, typename QtPrivate::List_Left<typename SignalType::Arguments, SlotType::ArgumentCount>::Value, // NOLINT
                                           typename SignalType::ReturnType>(slot),
                            type, types, &SignalType::Object::staticMetaObject); // NOLINT
#endif //__clang_analyzer__
4

2 回答 2

3

我认为您必须注释所有 5 行 connectImpl() 或类似// NOLINT代码,因为仅影响单个代码行。(1)

于 2016-11-23T09:05:20.173 回答
0

如果您在 QtCreator 中使用了 clang-tidy,请参阅

https://bugreports.qt.io/browse/QTCREATORBUG-20744

QtCreator 使用额外的工具,并且该库还不支持 //NOLINT 等。

于 2019-04-10T16:38:13.803 回答