rafat / ctsa

A Univariate Time Series Analysis and ARIMA Modeling Package in ANSI C. Updated with SARIMAX and Auto ARIMA.
https://code.google.com/p/ctsa/
Other
57 stars 25 forks source link

empty array initialization #9

Open leibersp opened 7 months ago

leibersp commented 7 months ago

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