Home » U++ Library support » Draw, Display, Images, Bitmaps, Icons » ScatterDraw/ScatterCtrl new features
Re: ScatterDraw/ScatterCtrl new features [message #39876 is a reply to message #39870] |
Wed, 08 May 2013 23:51   |
Didier
Messages: 726 Registered: November 2008 Location: France
|
Contributor |
|
|
Hi Koldo,
I detected a small compilation issue that occurs on some compilers (gcc for arm for example).
In ScatterDraw/Equation.cpp, replace:
struct Equation_functor : NonLinearOptimizationFunctor<double> {
DataSource *series;
ExplicitEquation *fSource;
Equation_functor() : NonLinearOptimizationFunctor() {}
by
struct Equation_functor : NonLinearOptimizationFunctor<double> {
DataSource *series;
ExplicitEquation *fSource;
Equation_functor() : NonLinearOptimizationFunctor<double>() {} --- correction here ---
Add <double> to the base class default constructor (or remove the call since it's the defaut constructor)
[Updated on: Wed, 08 May 2013 23:53] Report message to a moderator
|
|
|
Goto Forum:
Current Time: Tue May 13 08:18:02 CEST 2025
Total time taken to generate the page: 0.00383 seconds
|