From 772e1e7fa0577d3c61416669b8ac1513af6ab4d6 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 26 Oct 2022 21:49:10 +0300 Subject: [PATCH] Fix low/high order --- benchmark/uuid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/uuid.cpp b/benchmark/uuid.cpp index 1da32712..210c9b0a 100644 --- a/benchmark/uuid.cpp +++ b/benchmark/uuid.cpp @@ -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 );