aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-30 13:34:04 +1000
committerDavid Walter Seikel2012-01-30 13:34:04 +1000
commit3473efe2a117dc888ce40b6bd0ca800fdf17dab4 (patch)
treebb0c46df96ba4487d6d663dba665427f29796d3d /LuaSL/src/LuaSL_compile.c
parentComment++ (diff)
downloadSledjHamr-3473efe2a117dc888ce40b6bd0ca800fdf17dab4.zip
SledjHamr-3473efe2a117dc888ce40b6bd0ca800fdf17dab4.tar.gz
SledjHamr-3473efe2a117dc888ce40b6bd0ca800fdf17dab4.tar.bz2
SledjHamr-3473efe2a117dc888ce40b6bd0ca800fdf17dab4.tar.xz
More comment++
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LuaSL_compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/LuaSL/src/LuaSL_compile.c b/LuaSL/src/LuaSL_compile.c
index e4a526a..9c301b8 100644
--- a/LuaSL/src/LuaSL_compile.c
+++ b/LuaSL/src/LuaSL_compile.c
@@ -1265,6 +1265,7 @@ static void outputParameterListToken(FILE *file, outputMode mode, LSL_Leaf *cont
1265static void outputRawParenthesisToken(FILE *file, outputMode mode, LSL_Parenthesis *parenthesis, const char *typeName) 1265static void outputRawParenthesisToken(FILE *file, outputMode mode, LSL_Parenthesis *parenthesis, const char *typeName)
1266{ 1266{
1267 fprintf(file, "("); 1267 fprintf(file, "(");
1268// TODO, if it's a parameter list, deal with it via the leaf -> function -> vars.
1268 if (LSL_TYPECAST_OPEN == parenthesis->type) 1269 if (LSL_TYPECAST_OPEN == parenthesis->type)
1269 fprintf(file, "%s", typeName); // TODO - We are missing the type ignorable text here. 1270 fprintf(file, "%s", typeName); // TODO - We are missing the type ignorable text here.
1270 else 1271 else