Skip to content

Commit

Permalink
[uuid] Compatibility with C++23 constexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier authored Aug 29, 2024
1 parent a9324f2 commit a35d565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/score/plugins/UuidKey.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ struct uuid
return *this;
}

constexpr uuid(uint8_t (&other)[16]) noexcept
constexpr uuid(const uint8_t (&other)[16]) noexcept
: data{other[0], other[1], other[2], other[3], other[4], other[5],
other[6], other[7], other[8], other[9], other[10], other[11],
other[12], other[13], other[14], other[15]}
Expand Down

0 comments on commit a35d565

Please sign in to comment.