Browse Source

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

Sam Lantinga 6 years ago
parent
commit
9891c31ba0
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/begin_code.h

+ 3 - 0
include/begin_code.h

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