You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: Make second argument in ADD / MUL variadic (#1312)
This commit changes the function signature of the ADD and MUL functions, i.e.
```diff
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 either implicitly or
explicitly because the validation should catch such cases)
0 commit comments