Skip to content

Commit

Permalink
Merge pull request #167 from k3DW/missing-field-initializers
Browse files Browse the repository at this point in the history
Fix missing-field-initializers error in GCC 4.8 and 4.9
  • Loading branch information
pdimov authored Aug 22, 2024
2 parents c432e16 + 750d48c commit 807c4a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/uuid/uuid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ struct uuid

node_type node_identifier() const noexcept
{
node_type node = {};
node_type node = {{}};

std::memcpy( node.data(), this->data + 10, 6 );
return node;
Expand Down

0 comments on commit 807c4a7

Please sign in to comment.