mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +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;//
|
||||
|
||||
template<class T>
|
||||
|
@ -672,13 +679,6 @@ ClassReg DVMObject<T>::RegistrationInfo =
|
|||
};
|
||||
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_FUNC(Destroy)
|
||||
VMEXPORT_NATIVES_END(DObject)
|
||||
|
|
Loading…
Reference in a new issue