Browse Source

fix error "Chunk is too large" with gcc >=4.7.0 / mingw64

abma 12 years ago
parent
commit
169e5b9f35
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/assimp/Compiler/pushpack1.h

+ 1 - 1
include/assimp/Compiler/pushpack1.h

@@ -25,7 +25,7 @@
 #	pragma pack(push,1)
 #	pragma pack(push,1)
 #	define PACK_STRUCT
 #	define PACK_STRUCT
 #elif defined( __GNUC__ )
 #elif defined( __GNUC__ )
-#	define PACK_STRUCT	__attribute__((packed))
+#	define PACK_STRUCT	__attribute__((gcc_struct, __packed__))
 #else
 #else
 #	error Compiler not supported
 #	error Compiler not supported
 #endif
 #endif