You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is simply incorrect. QUuid::toByteArray() returns a string representation of the UUID, eg: {d6baa5c0-c5e9-48eb-bba3-f64a86f29ef8}
Fortunately the string representation is always larger than the 16 bytes, and is fairly unique.
The correct call is QUuid::toRfc4122() to get the big-endian representation.
The text was updated successfully, but these errors were encountered:
CIDs are being generated by the following code:
This is simply incorrect. QUuid::toByteArray() returns a string representation of the UUID, eg:
{d6baa5c0-c5e9-48eb-bba3-f64a86f29ef8}
Fortunately the string representation is always larger than the 16 bytes, and is fairly unique.
The correct call is QUuid::toRfc4122() to get the big-endian representation.
The text was updated successfully, but these errors were encountered: