From e421f8137580048ca1550341ad240fbd7486cd57 Mon Sep 17 00:00:00 2001 From: Martin Winkler Date: Fri, 10 Mar 2017 15:06:55 +0000 Subject: [PATCH] - added TODO: special handling for function pointer --- src/stubser/cfile_parser.c | 1 + 1 file changed, 1 insertion(+) 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);