QDataStream problem from 4.8 to 5.1 on MacOS
General and Desktop
8
Posts
3
Posters
2.4k
Views
1
Watching
-
Hello,
I am getting error on this:
@ QByteArray ba;
QDataStream ds(&ba, QIODevice::WriteOnly);
//This will write the hash into the byte array (through the data stream)
ds << hash;@The error output is:
licensefile.cpp:185: error: variable has incomplete type 'QDataStream'
QDataStream ds(&ba);
^Any help please?
-
-
Hi,
Are you using a custom hash ?
-
Could you show the part of your code that triggers this ?