1 // (C) Copyright John Maddock 2003.
\r
2 // Use, modification and distribution are subject to the
\r
3 // Boost Software License, Version 1.0. (See accompanying file
\r
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
\r
7 // Boost binaries are built with the compiler's default ABI settings,
\r
8 // if the user changes their default alignment in the VS IDE then their
\r
9 // code will no longer be binary compatible with the bjam built binaries
\r
10 // unless this header is included to force Boost code into a consistent ABI.
\r
12 // Note that inclusion of this header is only necessary for libraries with
\r
13 // separate source, header only libraries DO NOT need this as long as all
\r
14 // translation units are built with the same options.
\r
17 # pragma pack(push,16)
\r
19 # pragma pack(push,8)
\r