其他分享
首页 > 其他分享> > c – 如何在clang中禁用有关匿名结构的警告?

c – 如何在clang中禁用有关匿名结构的警告?

作者:互联网

我想在我的C程序中使用匿名结构而没有此警告但保留-pedantic标志因为我想知道我是否在使用任何其他编译器扩展来自Microsoft / GCC on clang.我知道-Wno-gnu但它关闭的次数超出了我的预期,支持每个gcc的扩展名.可能吗?

解决方法:

-Wno-gnu-anonymous-struct should do the job.

标签:c,clang,compiler-warnings
来源: https://codeday.me/bug/20190825/1716764.html