hi,

is there something similar to
Qt Code:
  1. std::numeric_limits<double>::quiet_NaN()
To copy to clipboard, switch view to plain text mode 
in Qt?

if qreal is typedef for double on all platforms, how to get NaN for all platforms?

maybe following is a better to use?
Qt Code:
  1. std::numeric_limits<qreal>::quiet_NaN()
To copy to clipboard, switch view to plain text mode 

thank you