Chris@16: // (C) Copyright John Maddock 2003. Chris@16: // Use, modification and distribution are subject to the Chris@16: // Boost Software License, Version 1.0. (See accompanying file Chris@16: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // for C++ Builder the following options effect the ABI: Chris@16: // Chris@16: // -b (on or off - effect emum sizes) Chris@16: // -Vx (on or off - empty members) Chris@16: // -Ve (on or off - empty base classes) Chris@16: // -aX (alignment - 5 options). Chris@16: // -pX (Calling convention - 4 options) Chris@16: // -VmX (member pointer size and layout - 5 options) Chris@16: // -VC (on or off, changes name mangling) Chris@16: // -Vl (on or off, changes struct layout). Chris@16: Chris@16: // In addition the following warnings are sufficiently annoying (and Chris@16: // unfixable) to have them turned off by default: Chris@16: // Chris@16: // 8027 - functions containing [for|while] loops are not expanded inline Chris@16: // 8026 - functions taking class by value arguments are not expanded inline Chris@16: Chris@16: #pragma nopushoptwarn Chris@16: # pragma option push -a8 -Vx- -Ve- -b- -pc -Vmv -VC- -Vl- -w-8027 -w-8026 Chris@16: Chris@16: Chris@16: