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
in ctsa.h the array params is always initialized as
double params[0]
(invalid in ISO C/C++)
why not simply
double *params
Im using this library in a data processing software, and was wondering if it had a purpose, because if not it would be nice to change, to avoid compiler warnings
The text was updated successfully, but these errors were encountered:
in ctsa.h the array params is always initialized as
double params[0]
(invalid in ISO C/C++)
why not simply
double *params
Im using this library in a data processing software, and was wondering if it had a purpose, because if not it would be nice to change, to avoid compiler warnings
The text was updated successfully, but these errors were encountered: