如何禁止内部Visual Studio文件的警告

时间:2013-03-02 13:47:51

标签: c++ visual-c++ visual-studio-2012 compiler-warnings

我在Visual Studio 2012和这个简单的程序中将警告级别设置为EnableAllWarnings(/ Wall):

#include "math.h"

int main() {
    return 0;
}

编译时,我收到了几个警告:

  

1>C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include\math.h(161): warning C4514: 'hypot' : unreferenced inline function has been removed

如果我将"math.h"替换为"string.h",我会继续收到有关string.h的警告,等等。

有谁知道如何删除这些警告?

2 个答案:

答案 0 :(得分:7)

也许这会解决问题:

// you can replace 3 with even lower warning level if needed 
#pragma warning(push, 3) 

#include <Windows.h>
#include <crtdbg.h>
#include "math.h"
//include all the headers who's warnings you do not want to see here

#pragma warning(pop)

如果您计划将代码移植到非MS环境,那么您可能希望将所有使用过的外部标头包装在特定的标头中,以便在移植时更改它。

答案 1 :(得分:6)

仔细查看您实际收到的警告信息:

1> warning C4514: 'hypot' : unreferenced inline function has been removed

如果你对自己说“所以?!”,那那就是我的观点。

Warning C4514是一个众所周知的无用的,并且实际上只是急于被全局压制。这是一个完全不可操作的项目,描述了您在使用库时的预期情况。

Warning C4711 - 已选择内联扩展功能 - 这是您将看到的另一个嘈杂警告。当然,在启用优化的情况下进行编译时,你只会得到这个,这可能就是你还没有看到它的原因。

与链接文档一样,这些是“信息警告”,默认情况下它们被禁用。这很棒,除了我和你一样,我更愿意在启用“所有警告”(/Wall)的情况下编译我的代码,这些只是添加噪音。所以我将它们单独关闭。

您可以通过在VS IDE中向项目的属性添加抑制来禁用这些警告,也可以在代码文件的顶部使用pragma指令(例如,在预编译的头文件中):

#pragma warning(disable: 4514 4711)