如何禁用包含文件夹的警告?
我必须使用一些库,并且无权更改它或关心它, 每次我编译大量警告弹出窗口。无用的东西比如
:警告 C4350:行为更改:'std::auto_ptr<_Ty>::auto_ptr(std::auto_ptr_ref<_Ty>) 调用 throw()' 而不是 'std::auto_ptr<_Ty>::auto_ptr(std::auto_ptr<_Ty> &) throw()'
我想完成对此特定库的禁用警告。 |但仍然希望对我自己的代码发出警告。在 Visual Studio 2010 中可以吗?
I have to use some library, and have no power to change it or care about it,
EveryTime i compile a HUGE number of warnings popup. Useless things like
: warning C4350: behavior change: 'std::auto_ptr<_Ty>::auto_ptr(std::auto_ptr_ref<_Ty>)
throw()' called instead of 'std::auto_ptr<_Ty>::auto_ptr(std::auto_ptr<_Ty> &) throw()'
I want to complete disable Warnings to this specific library. |But still want to have warnings to my own code. Is it possible in Visual Studio 2010 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
#pragma warning 是一种选择,尽管它可能只有在您使用时才可行预编译头文件或您自己的项目中源文件很少。
#pragma warning is one option, though it's probably only feasible if you use precompiled headers or have very few source files in your own project.
使用以下代码创建您自己的头文件(如“your_ABCD.h”)。
然后,您可以包含“your_ABCD.h”而不是“ir_ABCD.h”文件。
Create your own header file ( like "your_ABCD.h" ) with the below code.
Then, you can include "your_ABCD.h" instead of "their_ABCD.h" file.