We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26bc350 commit 4db2150Copy full SHA for 4db2150
Detectors/MUON/MCH/Raw/Decoder/src/PageDecoder.cxx
@@ -26,7 +26,7 @@ uint16_t CHARGESUM_MASK = 0x100;
26
template <typename FORMAT, typename CHARGESUM>
27
struct PayloadDecoderImpl {
28
29
- using type = struct {
+ using type = struct PayloadDecoderImplReturnType {
30
void process(uint32_t, gsl::span<const std::byte>);
31
};
32
Detectors/MUON/MCH/Workflow/src/DataDecoderSpec.cxx
@@ -148,8 +148,9 @@ class DataDecoderTask
148
mDecoder->reset();
149
decodeTF(pc);
150
for (auto&& input : pc.inputs()) {
151
- if (input.spec->binding == "readout")
+ if (input.spec->binding == "readout") {
152
decodeReadout(input);
153
+ }
154
}
155
156
auto& digits = mDecoder->getOutputDigits();
0 commit comments