From dac5777a7095d457ea296b9bd9dc14b525d60665 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Fri, 3 Nov 2017 12:44:28 +0200 Subject: [PATCH] Removed obsolete declarations from codegen.h --- src/scripting/backend/codegen.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/scripting/backend/codegen.h b/src/scripting/backend/codegen.h index 58ac84d85..8ee32423f 100644 --- a/src/scripting/backend/codegen.h +++ b/src/scripting/backend/codegen.h @@ -319,8 +319,6 @@ protected: } public: - FxExpression *CheckIntForName(); - virtual ~FxExpression() {} virtual FxExpression *Resolve(FCompileContext &ctx); @@ -2132,7 +2130,6 @@ class FxLocalVariableDeclaration : public FxExpression public: int StackOffset = -1; int RegNum = -1; - bool constructed = false; FxLocalVariableDeclaration(PType *type, FName name, FxExpression *initval, int varflags, const FScriptPosition &p); ~FxLocalVariableDeclaration();