如何在 Xcode 中隐藏有关忽略属性的警告?
How to hide warnings about ignored attributes in Xcode?
如何在 Xcode 中禁用以下警告?
'packed' attribute ignored for field of type 'uchar' (aka 'unsigned char')
我浏览了警告开关列表,但找不到任何相关信息,也没有成功禁用迂腐的警告。
使用-Wignored-attributes
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wignored-attributes"
your code
#pragma clang diagnostic pop
上找到完整列表
如何在 Xcode 中禁用以下警告?
'packed' attribute ignored for field of type 'uchar' (aka 'unsigned char')
我浏览了警告开关列表,但找不到任何相关信息,也没有成功禁用迂腐的警告。
使用-Wignored-attributes
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wignored-attributes"
your code
#pragma clang diagnostic pop
上找到完整列表