From ece33a4bf35410d57adeee8cf685fb16fe1f0154 Mon Sep 17 00:00:00 2001 From: Mario Emmenlauer Date: Tue, 3 Sep 2024 14:51:00 +0200 Subject: [PATCH] lib/cpp/src/thrift/TUuid.h: Fix UUID usage for boost 1.86.0 --- lib/cpp/src/thrift/TUuid.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cpp/src/thrift/TUuid.h b/lib/cpp/src/thrift/TUuid.h index aa69c673dce..0eb50d5c2d5 100644 --- a/lib/cpp/src/thrift/TUuid.h +++ b/lib/cpp/src/thrift/TUuid.h @@ -90,7 +90,7 @@ class TUuid { #endif // THRIFT_TUUID_BOOST_CONSTRUCTOR_EXPLICIT TUuid(const boost::uuids::uuid& buuid) noexcept { - std::copy(std::begin(buuid.data), std::end(buuid.data), std::begin(this->data_)); + std::copy(std::begin(buuid), std::end(buuid), std::begin(this->data_)); } #endif // THRIFT_TUUID_SUPPORT_BOOST_UUID