I'm developping in C++, using the Qt framework.
I need to convert a long double
value into a string (ideally a QString
, but could be something else).
So far, I always used QString::number() for numerical->string conversion, but there is no overloading for the long double
type.
Thanks