如何禁用包含文件夹的警告?

发布于 2024-10-19 19:47:48 字数 333 浏览 0 评论 0原文

我必须使用一些库,并且无权更改它或关心它, 每次我编译大量警告弹出窗口。无用的东西比如

:警告 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泛泛之交 2024-10-26 19:47:48

#pragma warning 是一种选择,尽管它可能只有在您使用时才可行预编译头文件或您自己的项目中源文件很少。

#pragma warning (push)
#pragma warning (disable : 4350)
#include <third/party/headers/in/question.h>
#pragma warning (pop)

#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.

#pragma warning (push)
#pragma warning (disable : 4350)
#include <third/party/headers/in/question.h>
#pragma warning (pop)
魂归处 2024-10-26 19:47:48

使用以下代码创建您自己的头文件(如“your_ABCD.h”)。

// In your_ABCD.h
#pragma once
#pragma warning (disable : 4350)
#include <their_ABCD.h>
#pragma warning (default : 4350)

然后,您可以包含“your_ABCD.h”而不是“ir_ABCD.h”文件。

Create your own header file ( like "your_ABCD.h" ) with the below code.

// In your_ABCD.h
#pragma once
#pragma warning (disable : 4350)
#include <their_ABCD.h>
#pragma warning (default : 4350)

Then, you can include "your_ABCD.h" instead of "their_ABCD.h" file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文