|
||||
File indexing completed on 2025-01-18 09:30:06
0001 // (C) Copyright John Maddock 2003. 0002 // Use, modification and distribution are subject to the 0003 // Boost Software License, Version 1.0. (See accompanying file 0004 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 0005 0006 // for C++ Builder the following options effect the ABI: 0007 // 0008 // -b (on or off - effect emum sizes) 0009 // -Vx (on or off - empty members) 0010 // -Ve (on or off - empty base classes) 0011 // -aX (alignment - 5 options). 0012 // -pX (Calling convention - 4 options) 0013 // -VmX (member pointer size and layout - 5 options) 0014 // -VC (on or off, changes name mangling) 0015 // -Vl (on or off, changes struct layout). 0016 0017 // In addition the following warnings are sufficiently annoying (and 0018 // unfixable) to have them turned off by default: 0019 // 0020 // 8027 - functions containing [for|while] loops are not expanded inline 0021 // 8026 - functions taking class by value arguments are not expanded inline 0022 0023 #pragma nopushoptwarn 0024 # pragma option push -a8 -Vx- -Ve- -b- -pc -Vmv -VC- -Vl- -w-8027 -w-8026 0025 0026 0027
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |