84cedf2c7e2ca2f24de4789c6fb503c9edf6f11e
[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  * NOTE: GCC follows the Itaniumâ„¢ C++ ABI on all platforms
9  * http://mentorembedded.github.io/cxx-abi/abi.html
10  * http://libcxxabi.llvm.org/spec.html
11  */
12 #include <cxxabi.h>
13
14 namespace __cxxabiv1 {
15
16 // --- RTTI --
17 // - No inheritance class
18 __class_type_info::~__class_type_info()
19 {
20         // nop
21 }
22
23 // - Single inheritance class
24 __si_class_type_info::~__si_class_type_info()
25 {
26         
27 }
28
29 // - Multiple inheritance class
30 __vmi_class_type_info::~__vmi_class_type_info()
31 {
32         
33 }
34
35 };      // namespace __cxxabiv1
36

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