mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Declare VMFunction::Proto to the garbage collector
This commit is contained in:
parent
eace79ccad
commit
aa58c5f519
2 changed files with 4 additions and 1 deletions
|
@ -158,6 +158,7 @@ enum
|
||||||
class VMFunction : public DObject
|
class VMFunction : public DObject
|
||||||
{
|
{
|
||||||
DECLARE_ABSTRACT_CLASS(VMFunction, DObject);
|
DECLARE_ABSTRACT_CLASS(VMFunction, DObject);
|
||||||
|
HAS_OBJECT_POINTERS;
|
||||||
public:
|
public:
|
||||||
bool Native;
|
bool Native;
|
||||||
FName Name;
|
FName Name;
|
||||||
|
|
|
@ -2,7 +2,9 @@
|
||||||
#include "vm.h"
|
#include "vm.h"
|
||||||
|
|
||||||
IMPLEMENT_CLASS(VMException)
|
IMPLEMENT_CLASS(VMException)
|
||||||
IMPLEMENT_ABSTRACT_CLASS(VMFunction)
|
IMPLEMENT_ABSTRACT_POINTY_CLASS(VMFunction)
|
||||||
|
DECLARE_POINTER(Proto)
|
||||||
|
END_POINTERS
|
||||||
IMPLEMENT_CLASS(VMScriptFunction)
|
IMPLEMENT_CLASS(VMScriptFunction)
|
||||||
IMPLEMENT_CLASS(VMNativeFunction)
|
IMPLEMENT_CLASS(VMNativeFunction)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue