mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
25 lines
623 B
C++
25 lines
623 B
C++
// -*- C++ -*-
|
|
|
|
//=============================================================================
|
|
/**
|
|
* @file post.h
|
|
*
|
|
* $Id: post.h 97602 2014-02-19 20:24:30Z johnnyw $
|
|
*
|
|
* @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
|