comparison gcc/doc/implement-cxx.texi @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents 77e2b8dfacca
children f6334be47118
comparison
equal deleted inserted replaced
56:3c8a44c06a95 63:b7f97abdc517
26 system (or other environment when compiling for a freestanding 26 system (or other environment when compiling for a freestanding
27 environment); refer to their documentation for details. 27 environment); refer to their documentation for details.
28 28
29 @menu 29 @menu
30 * Conditionally-supported behavior:: 30 * Conditionally-supported behavior::
31 * Exception handling::
31 @end menu 32 @end menu
32 33
33 @node Conditionally-supported behavior 34 @node Conditionally-supported behavior
34 @section Conditionally-supported behavior 35 @section Conditionally-supported behavior
35 36
43 constructor or destructor can be passed to ... (C++0x 5.2.2).} 44 constructor or destructor can be passed to ... (C++0x 5.2.2).}
44 45
45 Such argument passing is not supported. 46 Such argument passing is not supported.
46 47
47 @end itemize 48 @end itemize
49
50 @node Exception handling
51 @section Exception handling
52
53 @itemize @bullet
54 @item
55 @cite{In the situation where no matching handler is found, it is
56 implementation-defined whether or not the stack is unwound before
57 std::terminate() is called (C++98 15.5.1).}
58
59 The stack is not unwound before std::terminate is called.
60
61 @end itemize