mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 11:27:15 +02:00
Fix low/high order
This commit is contained in:
@ -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 + 0, low );
|
||||||
boost::endian::store_little_u64( data + 8, high );
|
boost::endian::store_little_u64( data + 8, high );
|
||||||
|
Reference in New Issue
Block a user