On December 2, 2009, Marco Martin wrote:
> On Wednesday 02 December 2009, Alexis Ménard wrote:
> > Hello dudes,
> >
> > When recompiling Plasma for the N900 i found some compilations issues,
> > don't worry no big deal.
> >
> > Just so you know on ARM qreal is not a double but a float...
> >
> > s
On Wednesday 02 December 2009, Alexis Ménard wrote:
> Hello dudes,
>
> When recompiling Plasma for the N900 i found some compilations issues,
> don't worry no big deal.
>
> Just so you know on ARM qreal is not a double but a float...
>
> so qMax(0.0, whatEverQReal) doesn't compile...You should
Hello dudes,
When recompiling Plasma for the N900 i found some compilations issues, don't
worry no big deal.
Just so you know on ARM qreal is not a double but a float...
so qMax(0.0, whatEverQReal) doesn't compile...You should use
qMax(qreal(0.0), whatEverQReal)...
:D.
Thanks. Cheers!