OpenCBM
packoff.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License
4  * as published by the Free Software Foundation; either version
5  * 2 of the License, or (at your option) any later version.
6  *
7  * Copyright 2006 Spiro Trikaliotis
8  */
9 
17 #if (_MSC_VER >= 1200) // MSVC 6 or newer
18 
19  #pragma pack(pop, packonoff)
20 
21 #elif (__GNUC__ >= 3)
22 
23  #pragma pack()
24 
25 #else
26 
27  #pragma error "Unknown compiler!"
28 
29 #endif