diff options
-rw-r--r-- | LuaSL/src/LuaSL_compile.c | 1 |
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 | |||
1265 | static void outputRawParenthesisToken(FILE *file, outputMode mode, LSL_Parenthesis *parenthesis, const char *typeName) | 1265 | static 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 |