SA0114: Variables with data type LTIME
Function | Determines variables of type LTIME. |
Reason | Not all systems support LTIME. The code becomes more portable if LTIME is not used. |
Importance | Low |
Sample:
PROGRAM MAIN
VAR
tVar : LTIME; // => SA0114
END_VAR// no error SA0114 for the following code line:
tVar := tVar + LTIME#1000D15H23M12S34MS2US44NS;