mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 12:46:32 +01:00
'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
1 changed files with 2 additions and 2 deletions
|
|
@ -56,8 +56,8 @@ Curve::solve ()
|
|||
(www.korf.co.uk/spline.pdf) for more details.
|
||||
*/
|
||||
|
||||
double x[npoints];
|
||||
double y[npoints];
|
||||
vector<double> x(npoints);
|
||||
vector<double> y(npoints);
|
||||
uint32_t i;
|
||||
ControlList::EventList::const_iterator xx;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue