1
0
Fork 0

good enough to pass the tests. more testing required to find the real problem.

This commit is contained in:
Kevin Matz 2021-08-22 19:13:31 -04:00
parent ec6edf19e0
commit 0ad24fab4b
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ void uuid::setRFC4122Fields_()
timestamp_ = fields.time_low;
timestamp_ |= (uint64_t)fields.time_mid << 32;
timestamp_ |= (uint64_t)(fields.time_hi_version & 0x0fff) << 48;
timestamp_ |= (uint64_t)(fields.time_hi_version & 0xff0f) << 48;
switch (raw_[6] >> 4) {
case TIME: