From 13ef97c4ace5f07f672c190da2f4bf4541a77afa Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 12 Mar 2018 18:47:49 +0100 Subject: [PATCH] - removed debug message. --- src/scripting/zscript/zcc_compile.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scripting/zscript/zcc_compile.cpp b/src/scripting/zscript/zcc_compile.cpp index 0722ed694..279d9adda 100644 --- a/src/scripting/zscript/zcc_compile.cpp +++ b/src/scripting/zscript/zcc_compile.cpp @@ -2742,7 +2742,6 @@ void ZCCCompiler::CompileFunction(ZCC_StructWork *c, ZCC_FuncDeclarator *f, bool // Defaults must be identical to parent class if (parentfunc->Variants[0].Implementation->DefaultArgs.Size() > 0) { - Printf("Copying defaults from %s to %s\n", parentfunc->Variants[0].Implementation->PrintableName.GetChars(), sym->Variants[0].Implementation->PrintableName.GetChars()); sym->Variants[0].Implementation->DefaultArgs = parentfunc->Variants[0].Implementation->DefaultArgs; } }