From b44d17e80b59696fa993616736ea9b84efa91fa7 Mon Sep 17 00:00:00 2001 From: bkoz Date: Thu, 19 Nov 2009 19:21:05 +0000 Subject: 2009-11-19 Benjamin Kosnik * src/pool_allocator.cc: Adjust catch blocks. * src/bitmap_allocator.cc: Same. * src/localename.cc: Same. * src/ios.cc: Same. * libsupc++/cxxabi-forced.h: Adjust comments, markup. * testsuite/util/testsuite_hooks.h (copy_constructor::copyCount): Remove. (copy_constructor::dtorCount): Remove. * testsuite/23_containers/list/modifiers/1.h: Adjust. * testsuite/23_containers/list/modifiers/2.h: Same. * testsuite/23_containers/list/modifiers/3.h: Same. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154341 138bc75d-0d04-0410-961f-82ee72b054a4 --- libstdc++-v3/libsupc++/cxxabi-forced.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'libstdc++-v3/libsupc++') diff --git a/libstdc++-v3/libsupc++/cxxabi-forced.h b/libstdc++-v3/libsupc++/cxxabi-forced.h index e0cf1d05edd..845d8094da0 100644 --- a/libstdc++-v3/libsupc++/cxxabi-forced.h +++ b/libstdc++-v3/libsupc++/cxxabi-forced.h @@ -23,6 +23,10 @@ // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see // . +/** @file cxxabi-forced.h + * The header provides an interface to the C++ ABI. + */ + #ifndef _CXXABI_FORCED_H #define _CXXABI_FORCED_H 1 @@ -41,7 +45,9 @@ namespace __cxxabiv1 class __forced_unwind { virtual ~__forced_unwind() throw(); - virtual void __pure_dummy() = 0; // prevent catch by value + + // Prevent catch by value. + virtual void __pure_dummy() = 0; }; } #endif // __cplusplus -- cgit v1.2.1