mirror of
https://github.com/romixlab/qmsgpack.git
synced 2026-02-06 07:15:20 +01:00
unpacking of all types except ext and map is done (untested!)
This commit is contained in:
@@ -6,9 +6,7 @@ QVariant MsgPack::deserialize(const QByteArray &data)
|
||||
{
|
||||
quint8 *p = (quint8 *)data.data();
|
||||
quint8 *end = p + data.size() - 1;
|
||||
qDebug() << "deserialize size:" << data.size();
|
||||
|
||||
MsgPackPrivate::unpack(p, end);
|
||||
//qDebug() << "deserialize size:" << data.size();
|
||||
|
||||
return MsgPackPrivate::unpack(p, end);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user