Skip to content

Commit

Permalink
Default UUID constructor should not be constexpr
Browse files Browse the repository at this point in the history
  • Loading branch information
chronoxor committed Mar 9, 2024
1 parent e8b3fa0 commit c6dceac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/system/uuid.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class UUID
{
public:
//! Default constructor
constexpr UUID() : _data() { _data.fill(0); }
UUID() : _data() { _data.fill(0); }
//! Initialize UUID with a given string literal
/*!
\param uuid - UUID string literal
Expand Down

0 comments on commit c6dceac

Please sign in to comment.