diff --git a/src/stubser/cfile_parser.c b/src/stubser/cfile_parser.c index 89f870f..61a01f3 100644 --- a/src/stubser/cfile_parser.c +++ b/src/stubser/cfile_parser.c @@ -484,6 +484,7 @@ STATIC int8_t evaluateParameter(char *aParameter, cfunction_t *aFunction) token = strtok(aParameter, ","); while (token) { + // TODO special handling for function pointer as argument if (0 == regexec(®Xparameter, token, CFILE_PARSER_MAX_REGEX_MATCHING_GROUPS, matchGroup, 0)) { tempParameter = cfunction_newParameter(&aFunction->parameter);