|
When there is a function or macro with the same argument names, this error will be triggered. For example:
// This function is not correct, because of the duplicate
// argument names (title)
STRING FUNCTION MyFunction (STRING title, RECORD title)
{
RETURN(title || title.name);
} |
To resolve this error, make sure the functions and macros don’t have duplicate argument names in the function- and macro declarations. << Back to errors overview
|