00001 // Copyright (C) 2007-2012 Nikolaus Gebhardt 00002 // This file is part of the "Irrlicht Engine". 00003 // For conditions of distribution and use, see copyright notice in irrlicht.h 00004 00005 // include this file to switch back to default alignment 00006 // file belongs to irrpack.h, see there for more info 00007 00008 // Default alignment 00009 #if defined(_MSC_VER) || defined(__BORLANDC__) || defined (__BCPLUSPLUS__) 00010 # pragma pack( pop, packing ) 00011 #elif defined (__DMC__) 00012 # pragma pack( pop ) 00013 #elif defined( __GNUC__ ) 00014 # if (__GNUC__ >= 4 ) && (__GNUC_MINOR__ >= 7) 00015 # pragma pack( pop, packing ) 00016 # endif 00017 #endif 00018 00019 #undef PACK_STRUCT 00020