C++ pragma GCC system_header 指令
这个 C++ 指令的作用是:“#pragma GCC system_header”?
What this C++ directive do: "#pragma GCC system_header"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
这个 C++ 指令的作用是:“#pragma GCC system_header”?
What this C++ directive do: "#pragma GCC system_header"?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
我用谷歌搜索并得到这个:
有关系统标头的更多信息
I googled and got this:
More info on System headers
它说,超过这一点的所有内容都被视为在系统标头中。这意味着除 #warning 之外的所有警告都将被抑制
It says that everything past this point is treated as if it were in a system header. That means that all warnings other than #warning are suppressed