Fix compile error related to last commit (#776)

This commit is contained in:
José González
2018-02-01 14:21:41 -04:00
committed by Lee
parent ff2851164d
commit d85e55dd9b

View File

@@ -319,7 +319,7 @@ class Object
DynamicObject* ToDynObject() { if (GetTypeId() == TYPEID_DYNAMICOBJECT) return reinterpret_cast<DynamicObject*>(this); else return NULL; }
DynamicObject const* ToDynObject() const { if (GetTypeId() == TYPEID_DYNAMICOBJECT) return reinterpret_cast<DynamicObject const*>(this); else return NULL; }
DataMap DataMap;
DataMap CustomData;
protected: