mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
cxxabi.h (__cxa_bad_cast): Declare it.
* libsupc++/cxxabi.h (__cxa_bad_cast): Declare it. (__cxa_bad_typeid): Likewise. (__cxa_atexit): Likewise. (__cxa_finalize): Likewise. From-SVN: r60001
This commit is contained in:
parent
3e25353ee7
commit
68e25f8806
@ -1,3 +1,10 @@
|
||||
2002-12-10 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* libsupc++/cxxabi.h (__cxa_bad_cast): Declare it.
|
||||
(__cxa_bad_typeid): Likewise.
|
||||
(__cxa_atexit): Likewise.
|
||||
(__cxa_finalize): Likewise.
|
||||
|
||||
2002-12-09 Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||
|
||||
* include/bits/slice_array.h (slice_array<>::operator=): Fix typo.
|
||||
|
@ -520,6 +520,22 @@ void __cxa_guard_abort (__guard *);
|
||||
extern "C" void
|
||||
__cxa_pure_virtual (void);
|
||||
|
||||
/* exception handling */
|
||||
|
||||
extern "C" void
|
||||
__cxa_bad_cast ();
|
||||
|
||||
extern "C" void
|
||||
__cxa_bad_typeid ();
|
||||
|
||||
/* DSO destruction */
|
||||
|
||||
extern "C" int
|
||||
__cxa_atexit (void (*)(void *), void *, void *);
|
||||
|
||||
extern "C" int
|
||||
__cxa_finalize (void *);
|
||||
|
||||
/* demangling routines */
|
||||
|
||||
extern "C"
|
||||
|
Loading…
Reference in New Issue
Block a user