Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / ACE / ace / pre.h
blob74861edf248e7a08d109fb9197a803a01770039f
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file pre.h
7 * @author Christopher Kohlhoff <chris@kohlhoff.com>
9 * This file saves the original alignment rules and changes the alignment
10 * boundary to ACE's default.
12 //=============================================================================
14 // No header guard
15 #if defined (_MSC_VER)
16 # pragma warning (disable:4103)
17 # pragma pack (push, 8)
18 #elif defined (__BORLANDC__)
19 # pragma option push -a8 -b -Ve- -Vx-
20 # pragma nopushoptwarn
21 # pragma nopackwarning
22 #endif