Explicitly initialise member fields, as required by constexpr

This commit is contained in:
Michał Janiszewski 2018-08-05 00:23:08 +02:00
parent 43ff649cfe
commit 99d1fade3a

View File

@ -457,7 +457,7 @@ namespace uuids
using value_type = uint8_t;
public:
constexpr uuid() noexcept = default;
constexpr uuid() noexcept : data({}) {};
explicit uuid(gsl::span<value_type, 16> bytes)
{