]> AND Private Git Repository - canny.git/blob - stc/exp/ml_stc_linux_make_v1.0/include/boost/config/abi/msvc_prefix.hpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
417e0ddecc01bfe12c30072fbceba235f961e9fa
[canny.git] / stc / exp / ml_stc_linux_make_v1.0 / include / boost / config / abi / msvc_prefix.hpp
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
5 \r
6 //\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
11 //\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
15 //\r
16 #if defined(_M_X64)\r
17 #  pragma pack(push,16)\r
18 #else\r
19 #  pragma pack(push,8)\r
20 #endif\r
21 \r
22 \r