gpt4 book ai didi

c++ - 为空 main() 生成警告

转载 作者:行者123 更新时间:2023-11-30 03:38:26 26 4
gpt4 key购买 nike

我在 VS 2015 上创建了一个默认的空项目,并将警告设置为 /Wall。我有一个包含以下内容的源文件:

#pragma warning(push, 3)        
#include <functional>
#pragma warning(pop)

//#pragma warning( disable : 4710 )
int main()
{

}

我收到以下错误:

1>c:\users\flatmouse\documents\visual studio 2015\projects\project72\project72\source.cpp(10): warning C4710: 'std::exception_ptr std::exception_ptr::_Current_exception(void) throw()': function not inlined
1> c:\program files (x86)\microsoft visual studio 14.0\vc\include\exception(299): note: see declaration of 'std::exception_ptr::_Current_exception'
1>c:\users\flatmouse\documents\visual studio 2015\projects\project72\project72\source.cpp(10): warning C4710: 'std::exception_ptr std::current_exception(void) noexcept': function not inlined
1> c:\program files (x86)\microsoft visual studio 14.0\vc\include\exception(358): note: see declaration of 'std::current_exception'

接下来我尝试通过将 pop 移动到最后一行来将所有源代码的警告级别保持在 3:

#pragma warning(push, 3)        
#include <functional>

//#pragma warning( disable : 4710 )
int main()
{

}
#pragma warning(pop)

但我仍然遇到同样的错误。

为什么还是报警告?

最佳答案

对于 Visual C++,使用 /W4,而不是 /Wall。后者只是要求大量愚蠢的警告。过去,/W4 会针对 Windows API 和 C++ 标准库 header 显示大量警告,但令人高兴的是,对于 Visual C++ 2015,情况已不再如此。

关于c++ - 为空 main() 生成警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39628254/

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