- added TODO: special handling for function pointer

This commit is contained in:
2017-03-10 15:06:55 +00:00
parent 8690c0845a
commit e421f81375

View File

@@ -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(&regXparameter, token, CFILE_PARSER_MAX_REGEX_MATCHING_GROUPS, matchGroup, 0))
{
tempParameter = cfunction_newParameter(&aFunction->parameter);