Fixed some issues in the ZScript array compilation code.

This commit is contained in:
Chronos Ouroboros 2019-01-06 19:57:36 -02:00 committed by Christoph Oelckers
commit 7c91b27463
3 changed files with 61 additions and 59 deletions

View file

@ -2197,7 +2197,7 @@ class FxLocalArrayDeclaration : public FxLocalVariableDeclaration
public:
FxLocalArrayDeclaration(PType *type, FName name, FArgumentList &args, const FScriptPosition &pos);
FxLocalArrayDeclaration(PType *type, FName name, FArgumentList &args, int varflags, const FScriptPosition &pos);
FxExpression *Resolve(FCompileContext&);
ExpEmit Emit(VMFunctionBuilder *build);
};