我从第三方代码中得到了很多这样的警告,我不能修改。 有没有办法禁用这个警告,或者至少在某些区域禁用它(比如vc++中的#pragma push/pop)?

例子:

list.h:1122: warning: `list<LogOutput*, allocator<LogOutput*> >::node_alloc_' will be initialized after 
list.h:1117: warning:   `allocator<LogOutput*> list<LogOutput*, allocator<LogOutput*> >::alloc_'

当前回答

使用-Wno-reorder (man gcc是你的朋友:))

其他回答

使用-Wno-reorder (man gcc是你的朋友:))

确保成员在初始化列表中出现的顺序与它们在类中出现的顺序相同

Class C {
   int a;
   int b;
   C():b(1),a(2){} //warning, should be C():a(2),b(1)
}

或者你可以转-Wno-reorder

如果你在使用GCC时看到来自库头的错误,那么你可以通过使用-isystem而不是-I来包含头来禁用警告。

类似的特征也存在于clang中。

如果你正在使用CMake,你可以为include_directories指定SYSTEM。

对于那些使用QT有此错误的人,将此添加到.pro文件中

QMAKE_CXXFLAGS_WARN_ON += -Wno-reorder

您可以使用-Wno-reorder禁用它。