Fix low/high order

This commit is contained in:
Peter Dimov
2022-10-26 21:49:10 +03:00
parent 120fe90934
commit 772e1e7fa0

View File

@ -47,7 +47,7 @@ struct uuid
{
}
uuid( std::uint64_t high, std::uint64_t low ) noexcept
uuid( std::uint64_t low, std::uint64_t high ) noexcept
{
boost::endian::store_little_u64( data + 0, low );
boost::endian::store_little_u64( data + 8, high );