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.
borland_prefix.hpp in vendors/XIOS/current/extern/boost/include/boost/config/abi – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/config/abi/borland_prefix.hpp @ 3428

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

importing initial XIOS vendor drop

File size: 1002 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//  for C++ Builder the following options effect the ABI:
7//
8//  -b (on or off - effect emum sizes)
9//  -Vx  (on or off - empty members)
10//  -Ve (on or off - empty base classes)
11//  -aX (alignment - 5 options).
12//  -pX (Calling convention - 4 options)
13//  -VmX (member pointer size and layout - 5 options)
14//  -VC (on or off, changes name mangling)
15//  -Vl (on or off, changes struct layout).
16
17//  In addition the following warnings are sufficiently annoying (and
18//  unfixable) to have them turned off by default:
19//
20//  8027 - functions containing [for|while] loops are not expanded inline
21//  8026 - functions taking class by value arguments are not expanded inline
22
23#pragma nopushoptwarn
24#  pragma option push -a8 -Vx- -Ve- -b- -pc -Vmv -VC- -Vl- -w-8027 -w-8026
25
26
27
Note: See TracBrowser for help on using the repository browser.