X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Ftypeinfo.cc;h=c7cb5bc634467beee85c50ea700898bb1792cfd8;hb=1a4752fe23a96f47fb83c57861aa991681fa98b0;hp=b0a9b3e1b9020d2455e3337e380a4aaa5c16f4da;hpb=8ae0b1147e613573a45fcd8e6f2f6af2aeff54ac;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc++.so_src/typeinfo.cc b/Usermode/Libraries/libc++.so_src/typeinfo.cc index b0a9b3e1..c7cb5bc6 100644 --- a/Usermode/Libraries/libc++.so_src/typeinfo.cc +++ b/Usermode/Libraries/libc++.so_src/typeinfo.cc @@ -6,6 +6,7 @@ * - typeid and dynamic_cast */ #include +#include namespace std { @@ -16,16 +17,19 @@ type_info::~type_info() bool type_info::operator==(const type_info& other) const { + _SysDebug("type_info::operator== - '%s' == '%s'", this->__type_name, other.__type_name); return this->__type_name == other.__type_name; } bool type_info::operator!=(const type_info& other) const { + _SysDebug("type_info::operator!= - '%s' != '%s'", this->__type_name, other.__type_name); return this->__type_name != other.__type_name; } bool type_info::before(const type_info& other) const { + _SysDebug("type_info::before - '%s' < '%s'", this->__type_name, other.__type_name); return this->__type_name < other.__type_name; } @@ -47,4 +51,3 @@ type_info& type_info::operator=(const type_info& rhs) }; // namespace std -