Skip to content

Commit

Permalink
lib/cpp/src/thrift/TUuid.h: Fix UUID usage for boost 1.86.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emmenlau committed Sep 3, 2024
1 parent d707811 commit ece33a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cpp/src/thrift/TUuid.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ece33a4

Please sign in to comment.