WARN5-Variables that are set, but never referenced

Top  Previous  Next

 

Variables that are set, but never referenced (WARN5)

 

This is a list of all variables that are set but never referenced. Either these variables are unnecessary or something is missing in the code, because it is meaningless to set a variable and then never reference, or use it.

 

Restrictions:

Variables marked with the absolute directive are not examined. These identifiers shadow another variable in memory, and are changed whenever the other variable changes.

 

Recommendation:

Examine why these variables are set, but never referenced.

 

 

See also:

 

Alerts