gcc: C++ Implementation

1 
1 5 C++ Implementation-Defined Behavior
1 *************************************
1 
1 A conforming implementation of ISO C++ is required to document its
1 choice of behavior in each of the areas that are designated
1 "implementation defined".  The following lists all such areas, along
1 with the section numbers from the ISO/IEC 14882:1998 and ISO/IEC
1 14882:2003 standards.  Some areas are only implementation-defined in one
1 version of the standard.
1 
1  Some choices depend on the externally determined ABI for the platform
1 (including standard character encodings) which GCC follows; these are
11 listed as "determined by ABI" below.  ⇒Binary Compatibility
 Compatibility, and <http://gcc.gnu.org/readings.html>.  Some choices are
11 documented in the preprocessor manual.  ⇒Implementation-defined
 behavior (cpp)Implementation-defined behavior.  Some choices are
11 documented in the corresponding document for the C language.  ⇒C
 Implementation.  Some choices are made by the library and operating
1 system (or other environment when compiling for a freestanding
1 environment); refer to their documentation for details.
1 

Menu