无法禁用特定编译器警告 (4100)

发布于 2024-11-05 19:58:25 字数 158 浏览 0 评论 0原文

我正在尝试为特定项目禁用 4100;但将其添加到禁用警告列表(又名添加 wd 标志)没有任何效果。对于同一个项目,我以相同的方式成功禁用了其他几个警告;此外,我可以通过向源添加适当的 #pragma 警告来禁用警告。

我的项目或 4100 警告是否有某些特定方面阻止它以这种方式被禁用?

I'm trying to disable the 4100 for a particular project; but adding it to the disabled warnings list (a.k.a., adding a wd flag) has no effect. I have a couple other warnings disabled in the same fashion successfully for the same project; further, I can disable the warning by adding the appropriate #pragma warning to the source.

Is there some particular aspect of my project or the 4100 warning that prevents it from being disabled in this fashion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

儭儭莪哋寶赑 2024-11-12 19:58:25

检查源文件引入的所有包含内容。其中之一可能明确启用警告或将警告重置为其默认状态。我在 VC++ 附带的 MFC 或 ATL 标头中看到过这种情况。

Check all of the includes that your source file pulls in. One of them likely explicitly enables the warning or resets warnings to their default state. I've seen this with either MFC or ATL headers that come with VC++.

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