2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Merge pull request #167 from k3DW/missing-field-initializers

Fix missing-field-initializers error in GCC 4.8 and 4.9
This commit is contained in:
Peter Dimov
2024-08-23 01:43:29 +03:00
committed by GitHub

View File

@@ -266,7 +266,7 @@ public:
node_type node_identifier() const noexcept
{
node_type node = {};
node_type node = {{}};
std::memcpy( node.data(), this->data + 10, 6 );
return node;