SA0113: Variables with data type WSTRING

Function

Determines variables of type WSTRING.

Reason

Not all systems support WSTRING. The code becomes easier to port if WSTRING is not used.

Importance

Low

Sample:

PROGRAM MAIN
VAR
    wsVar  : WSTRING;            // => SA0113
END_VAR