ClassIDs are now actually typeinfo name pointers.

I'll see, next, about the `instanceOf` thing, and going with
more normal RTTI routes.
This commit is contained in:
2025-08-09 05:11:24 -04:00
parent abbb7fdbf9
commit c107600de6
26 changed files with 51 additions and 50 deletions
+2 -2
View File
@@ -23,12 +23,12 @@
namespace dw {
int RegardingBorder::CLASS_ID = -1;
std::intptr_t RegardingBorder::CLASS_ID = -1;
RegardingBorder::RegardingBorder ()
{
DBG_OBJ_CREATE ("dw::RegardingBorder");
registerName ("dw::RegardingBorder", &CLASS_ID);
registerName ("dw::RegardingBorder", typeid(*this), &CLASS_ID);
}
RegardingBorder::~RegardingBorder ()