diff options
author | David Walter Seikel | 2014-01-13 19:47:58 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-01-13 19:47:58 +1000 |
commit | f9158592e1478b2013afc7041d9ed041cf2d2f4a (patch) | |
tree | b16e389d7988700e21b4c9741044cefa536dcbae /libraries/irrlicht-1.8/include/irrpack.h | |
parent | Libraries readme updated with change markers and more of the Irrlicht changes. (diff) | |
download | SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.zip SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.tar.gz SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.tar.bz2 SledjHamr-f9158592e1478b2013afc7041d9ed041cf2d2f4a.tar.xz |
Update Irrlicht to 1.8.1. Include actual change markers this time. lol
Diffstat (limited to 'libraries/irrlicht-1.8/include/irrpack.h')
-rw-r--r-- | libraries/irrlicht-1.8/include/irrpack.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/libraries/irrlicht-1.8/include/irrpack.h b/libraries/irrlicht-1.8/include/irrpack.h deleted file mode 100644 index 29a16fe..0000000 --- a/libraries/irrlicht-1.8/include/irrpack.h +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | // Copyright (C) 2007-2012 Nikolaus Gebhardt | ||
2 | // This file is part of the "Irrlicht Engine". | ||
3 | // For conditions of distribution and use, see copyright notice in irrlicht.h | ||
4 | |||
5 | // include this file right before the data structures to be 1-aligned | ||
6 | // and add to each structure the PACK_STRUCT define just like this: | ||
7 | // struct mystruct | ||
8 | // { | ||
9 | // ... | ||
10 | // } PACK_STRUCT; | ||
11 | // Always include the irrunpack.h file right after the last type declared | ||
12 | // like this, and do not put any other types with different alignment | ||
13 | // in between! | ||
14 | |||
15 | // byte-align structures | ||
16 | #if defined(_MSC_VER) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__) | ||
17 | # pragma warning(disable: 4103) | ||
18 | # pragma pack( push, packing ) | ||
19 | # pragma pack( 1 ) | ||
20 | # define PACK_STRUCT | ||
21 | #elif defined( __DMC__ ) | ||
22 | # pragma pack( push, 1 ) | ||
23 | # define PACK_STRUCT | ||
24 | #elif defined( __GNUC__ ) | ||
25 | // Using pragma pack might work with earlier gcc versions already, but | ||
26 | // it started to be necessary with gcc 4.7 on mingw unless compiled with -mno-ms-bitfields. | ||
27 | // And I found some hints on the web that older gcc versions on the other hand had sometimes | ||
28 | // trouble with pragma pack while they worked with __attribute__((packed)). | ||
29 | # if (__GNUC__ >= 4 ) && (__GNUC_MINOR__ >= 7) | ||
30 | # pragma pack( push, packing ) | ||
31 | # pragma pack( 1 ) | ||
32 | # define PACK_STRUCT | ||
33 | # else | ||
34 | # define PACK_STRUCT __attribute__((packed)) | ||
35 | #endif | ||
36 | #else | ||
37 | # error compiler not supported | ||
38 | #endif | ||
39 | |||