'libs/evoral' - Through a compiler extension gcc can implement an array whose size in not known at compile time. MSVC doesn't have this extension. Therefore, use std::vector instead
This commit is contained in:
parent
f9b99edc4a
commit
af51ef383d
@ -56,8 +56,8 @@ Curve::solve ()
|
|||||||
(www.korf.co.uk/spline.pdf) for more details.
|
(www.korf.co.uk/spline.pdf) for more details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
double x[npoints];
|
vector<double> x(npoints);
|
||||||
double y[npoints];
|
vector<double> y(npoints);
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
ControlList::EventList::const_iterator xx;
|
ControlList::EventList::const_iterator xx;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user