compilation fix attempt

This commit is contained in:
roeming
2026-04-30 17:45:53 -04:00
parent b45e2fa34d
commit ec07572ced
+2 -2
View File
@@ -1438,7 +1438,7 @@ namespace dusk {
constexpr uint16_t switchConvert = sizeof(membit.mTbox) << 8;
constexpr uint16_t itemConvert = switchConvert + (sizeof(membit.mItem) << 8);
const auto LoadFlag = [&membit](uint16_t flag) -> bool {
const auto LoadFlag = [&](uint16_t flag) -> bool {
const auto byteIndex = getByteIndexFromFlag(flag);
if (byteIndex < validTbox) {
@@ -1451,7 +1451,7 @@ namespace dusk {
return false;
};
const auto SetFlag = [&membit](uint16_t flag, bool set) -> void {
const auto SetFlag = [&](uint16_t flag, bool set) -> void {
const auto byteIndex = getByteIndexFromFlag(flag);
if (set) {
if (byteIndex < validTbox) {