我在 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"
to,"string.h"
我会继续收到有关 the 等的警告string.h
。
有谁知道如何删除这些警告?