This commit changes the function signature of the ADD and MUL functions, i.e.
FUNCTION ADD < T1: ANY, T2: ANY >: T1
VAR_INPUT
IN1: T1;
- IN1: T2;
+ IN2: T2...;
END_VAR
END_FUNCTION
(This should not change the behavior when calling some specific ADD__... function with too many arguments because the validation should catch such cases)
This commit changes the function signature of the ADD and MUL functions, i.e.
(This should not change the behavior when calling some specific
ADD__...
function with too many arguments because the validation should catch such cases)