Skip to content

Commit 3d80c46

Browse files
authored
DPL: C++20 fixes (#12317)
1 parent fe2cb99 commit 3d80c46

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Framework/Core/src/DataProcessingDevice.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2234,7 +2234,7 @@ bool DataProcessingDevice::tryDispatchComputation(ServiceRegistryRef ref, std::v
22342234
buffer[ai] = record.isValid(ai) ? '2' : '0';
22352235
}
22362236
buffer[record.size()] = 0;
2237-
states.updateState({.id = short((int)ProcessingStateId::DATA_RELAYER_BASE + action.slot.index), (int)(record.size() + buffer - relayerSlotState), relayerSlotState});
2237+
states.updateState({.id = short((int)ProcessingStateId::DATA_RELAYER_BASE + action.slot.index), .size = (int)(record.size() + buffer - relayerSlotState), .data = relayerSlotState});
22382238
};
22392239

22402240
// This is the main dispatching loop

0 commit comments

Comments
 (0)