mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Fixed the remaining errors with GCC
This commit is contained in:
parent
8d01ba7733
commit
a1aceaf04f
1 changed files with 7 additions and 7 deletions
|
@ -609,6 +609,13 @@ protected:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
//Initial list
|
||||||
|
VMEXPORTED_NATIVES_START
|
||||||
|
VMEXPORTED_NATIVES_FUNC(Destroy)
|
||||||
|
VMEXPORTED_NATIVES_FUNC(Tick)
|
||||||
|
VMEXPORTED_NATIVES_FUNC(DropInventory)
|
||||||
|
VMEXPORTED_NATIVES_END
|
||||||
|
|
||||||
class AInventory;//
|
class AInventory;//
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
|
@ -672,13 +679,6 @@ ClassReg DVMObject<T>::RegistrationInfo =
|
||||||
};
|
};
|
||||||
template<class T> _DECLARE_TI(DVMObject<T>)
|
template<class T> _DECLARE_TI(DVMObject<T>)
|
||||||
|
|
||||||
//Initial list
|
|
||||||
VMEXPORTED_NATIVES_START
|
|
||||||
VMEXPORTED_NATIVES_FUNC(Destroy)
|
|
||||||
VMEXPORTED_NATIVES_FUNC(Tick)
|
|
||||||
VMEXPORTED_NATIVES_FUNC(DropInventory)
|
|
||||||
VMEXPORTED_NATIVES_END
|
|
||||||
|
|
||||||
VMEXPORT_NATIVES_START(DObject, void)
|
VMEXPORT_NATIVES_START(DObject, void)
|
||||||
VMEXPORT_NATIVES_FUNC(Destroy)
|
VMEXPORT_NATIVES_FUNC(Destroy)
|
||||||
VMEXPORT_NATIVES_END(DObject)
|
VMEXPORT_NATIVES_END(DObject)
|
||||||
|
|
Loading…
Reference in a new issue