[Solved] Problem with QDataStream on Mac
-
I am reading a binary data file using QDataStream on a Mac. QT4.7
I open a QFile (with file dialog) then create a QDataStream from it. Set version, floating point precision.
When I read the file, bytes with a hex value of 0D are skipped. This happens regardless of whether I use a readRawData method or whether I read individual values using >> operators?
So 0D is ASCII CR which is the line termination char on Mac OS... but this shouldn't be interpreted by QDataStream?
Am I missing something obvious?