24 lines
567 B
C
24 lines
567 B
C
|
// -*- C++ -*-
|
||
|
|
||
|
//=============================================================================
|
||
|
/**
|
||
|
* @file post.h
|
||
|
*
|
||
|
* @author Christopher Kohlhoff <chris@kohlhoff.com>
|
||
|
*
|
||
|
* This file restores the original alignment rules.
|
||
|
*/
|
||
|
//=============================================================================
|
||
|
|
||
|
// No header guard
|
||
|
#if defined (_MSC_VER)
|
||
|
# pragma pack (pop)
|
||
|
#elif defined (__BORLANDC__)
|
||
|
# pragma option pop
|
||
|
# if (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x680)
|
||
|
# pragma option pop
|
||
|
# endif
|
||
|
# pragma nopushoptwarn
|
||
|
# pragma nopackwarning
|
||
|
#endif
|