Fixed compilation error with GCC/Clang

src/scripting/zscript/zcc_compile.h:95:10: error: extra qualification ‘ZCCCompiler::’ on member ‘StringConstFromNode’ [-fpermissive]
This commit is contained in:
alexey.lysiuk 2017-01-23 11:19:26 +02:00
parent 5a4a5a17db
commit d0565cafbd
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ public:
private:
int IntConstFromNode(ZCC_TreeNode *node, PStruct *cls);
FString ZCCCompiler::StringConstFromNode(ZCC_TreeNode *node, PStruct *cls);
FString StringConstFromNode(ZCC_TreeNode *node, PStruct *cls);
void ProcessClass(ZCC_Class *node, PSymbolTreeNode *tnode);
void ProcessStruct(ZCC_Struct *node, PSymbolTreeNode *tnode, ZCC_Class *outer);
void CreateStructTypes();