Showing with 7 additions and 0 deletions.
  1. +7 −0 src/object.d
7 changes: 7 additions & 0 deletions src/object.d
Original file line number Diff line number Diff line change
Expand Up @@ -1846,6 +1846,13 @@ unittest
}
}

/* Used in Exception Handling LSDA tables to 'wrap' C++ type info
* so it can be distinguished from D TypeInfo
*/
class __cpp_type_info_ptr
{
void* ptr; // opaque pointer to C++ RTTI type info
}

extern (C)
{
Expand Down