0

How can I disable the following warning in Xcode?

'packed' attribute ignored for field of type 'uchar' (aka 'unsigned char')

I browsed through the list of warning switches but couldn't find anything regarding this, also disabled pedantic warnings without success.

Emil Laine
  • 41,598
  • 9
  • 101
  • 157

1 Answers1

1

Use -Wignored-attributes

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wignored-attributes"
your code
#pragma clang diagnostic pop

You can find a full list on http://fuckingclangwarnings.com/

Claus Jørgensen
  • 25,882
  • 9
  • 87
  • 150