Sitemap Sitemap  |  Contact Us Contact Us  |  Clients Clients
   Errors reference
  Home |  Downloads |  HareScript |  Websites/CMS |  Applications
Search for:  in: 
HareScript
Errors reference
 

Duplicate argument name '%0' in function declaration.

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

 
Related
Download documents
The online documents are also available for download in PDF format, for offline use.
Read more...
 
Top To top of page