From 4694f9b20112b8100351d46622d8c82c28aebb95 Mon Sep 17 00:00:00 2001 From: Edoardo Prezioso Date: Mon, 23 Jan 2017 00:22:25 +0100 Subject: [PATCH] - Fixed GCC/Clang 'extra qualification' error. --- src/scripting/zscript/zcc_compile.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/zscript/zcc_compile.h b/src/scripting/zscript/zcc_compile.h index 2b9671cdc6..bda57e7b46 100644 --- a/src/scripting/zscript/zcc_compile.h +++ b/src/scripting/zscript/zcc_compile.h @@ -88,7 +88,7 @@ public: int Compile(); private: - int ZCCCompiler::IntConstFromNode(ZCC_TreeNode *node, PStruct *cls); + int IntConstFromNode(ZCC_TreeNode *node, PStruct *cls); void ProcessClass(ZCC_Class *node, PSymbolTreeNode *tnode); void ProcessStruct(ZCC_Struct *node, PSymbolTreeNode *tnode, ZCC_Class *outer); void CreateStructTypes();