We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4249323 commit fad46b4Copy full SHA for fad46b4
1 file changed
include/bitcoin/system/types.hpp
@@ -191,6 +191,7 @@ class data_t
191
{
192
}
193
194
+ CONSTEVAL bool operator==(const data_t&) const noexcept = default;
195
const std::array<uint8_t, Size - 1> data;
196
197
private:
@@ -213,6 +214,7 @@ class text_t
213
214
215
216
217
+ CONSTEVAL bool operator==(const text_t&) const noexcept = default;
218
const std::array<char, Size - 1> text;
219
220
0 commit comments