New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
msvc_prefix.hpp in vendors/XIOS/current/extern/boost/include/boost/config/abi – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/config/abi/msvc_prefix.hpp @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 819 bytes
Line 
1//  (C) Copyright John Maddock 2003.
2//  Use, modification and distribution are subject to the
3//  Boost Software License, Version 1.0. (See accompanying file
4//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6//
7// Boost binaries are built with the compiler's default ABI settings,
8// if the user changes their default alignment in the VS IDE then their
9// code will no longer be binary compatible with the bjam built binaries
10// unless this header is included to force Boost code into a consistent ABI.
11//
12// Note that inclusion of this header is only necessary for libraries with
13// separate source, header only libraries DO NOT need this as long as all
14// translation units are built with the same options.
15//
16#if defined(_M_X64)
17#  pragma pack(push,16)
18#else
19#  pragma pack(push,8)
20#endif
21
22
Note: See TracBrowser for help on using the repository browser.