gpt4 book ai didi

c++ - 如何配置 Visual Studio 不从库中输出警告?

转载 作者:太空宇宙 更新时间:2023-11-04 11:57:00 24 4
gpt4 key购买 nike

有什么方法可以防止 Visual Studio 从包含的库中打印出警告?

\Wall 给了我大量来自 STL 和 Qt header 的警告,尽管我只想看到那些源 self 自己的代码(即属于当前 Visual Studio 项目的代码)的警告。

最佳答案

您可以使用 pragma 为每个文件设置警告级别。

所以在你包含之前

#pragma warning( push )
#pragma warning( disable : 4705 )
#pragma warning( disable : 4706 )
#pragma warning( disable : 4707 )
// Some code

#include your files here

#pragma warning( pop )

更多信息在这里:http://msdn.microsoft.com/en-us/library/2c8f766e%28v=vs.80%29.aspx

关于c++ - 如何配置 Visual Studio 不从库中输出警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15834304/

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