Add int return type to MxCore::GetId instead of relying on implicit function nonsense.

This commit is contained in:
Brendan Dougherty 2023-07-11 13:12:08 -05:00
parent 8827a6dab4
commit f0ddc605ce

View File

@ -30,7 +30,7 @@ class MxCore
return !strcmp(name, MxCore::ClassName()); return !strcmp(name, MxCore::ClassName());
} }
inline GetId() inline int GetId()
{ {
return m_id; return m_id;
} }