Fixed bug 4641 - clang and clang-cl builds on windows create -Wpragma-pack warnings

This commit is contained in:
Sam Lantinga 2019-06-10 08:46:20 -07:00
parent 781692c03c
commit 9891c31ba0
1 changed files with 3 additions and 0 deletions

View File

@ -105,6 +105,9 @@
#ifdef _MSC_VER
#pragma warning(disable: 4103)
#endif
#ifdef __clang__
#pragma clang diagnostic ignored "-Wpragma-pack"
#endif
#ifdef __BORLANDC__
#pragma nopackwarning
#endif