Merge branch 'master' of git://ted.mutabah.net/acess2
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / cxxabi.cc
1 /*
2  * Acess2 C++ Library
3  * - By John Hodge (thePowersGang)
4  *
5  * cxxabi.cc
6  * - C++ ABI Namespace
7  */
8 #include <cxxabi.h>
9
10 namespace __cxxabiv1 {
11
12 // --- RTTI --
13 // - No inheritance class
14 __class_type_info::~__class_type_info()
15 {
16         // nop
17 }
18
19 // - Single inheritance class
20 __si_class_type_info::~__si_class_type_info()
21 {
22         
23 }
24
25 // - Multiple inheritance class
26 __vmi_class_type_info::~__vmi_class_type_info()
27 {
28         
29 }
30
31 };      // namespace __cxxabiv1
32

UCC git Repository :: git.ucc.asn.au