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:
@@ -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 ()
|
||||
|
||||
Reference in New Issue
Block a user