Fix build error

This commit is contained in:
JCW
2026-04-17 14:18:51 +01:00
parent 608da2d5fd
commit 116d65e89c

View File

@@ -25,7 +25,7 @@ allFeatures()
auto const& sa = allAmendments();
std::vector<uint256> feats;
feats.reserve(sa.size());
for (auto const& [name, [[maybe_unused]] _] : sa)
for ([[maybe_unused]] auto const& [name, _] : sa)
{
if (auto const f = getRegisteredFeature(name); f.has_value())
feats.push_back(*f);