00001 // (C) Copyright John Maddock 2003. 00002 // Use, modification and distribution are subject to the 00003 // Boost Software License, Version 1.0. (See accompanying file 00004 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00005 00006 // for C++ Builder the following options effect the ABI: 00007 // 00008 // -b (on or off - effect emum sizes) 00009 // -Vx (on or off - empty members) 00010 // -Ve (on or off - empty base classes) 00011 // -aX (alignment - 5 options). 00012 // -pX (Calling convention - 4 options) 00013 // -VmX (member pointer size and layout - 5 options) 00014 // -VC (on or off, changes name mangling) 00015 // -Vl (on or off, changes struct layout). 00016 00017 // In addition the following warnings are sufficiently annoying (and 00018 // unfixable) to have them turned off by default: 00019 // 00020 // 8027 - functions containing [for|while] loops are not expanded inline 00021 // 8026 - functions taking class by value arguments are not expanded inline 00022 00023 #pragma nopushoptwarn 00024 # pragma option push -Vx -Ve -a8 -b -pc -Vmv -VC- -Vl- -w-8027 -w-8026 00025 00026 00027