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
Is your issue related to a problem? Please describe.
When a variadic function parameter is specified i.e. FuncErr(p_errorValue, p_funcName, p_funcParams*), then called with more parameters than specified i.e. FuncErR(err, Stuff.SetParameterFloat.Name, p_prefix, p_parameter, p_value), AHK++ doesn't consider the variadic state of the last parameter and reports the call as a problem, expecting 0-3 params but got 5.
Describe the solution you'd like
AHK++ should consider variadic parameters and not report calls with incorrect parameter counts as problems.