Skip to content

Commit 4db2150

Browse files
aferrero2707ktf
authored andcommitted
[MCH] Fixed clang errors
1 parent 26bc350 commit 4db2150

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Detectors/MUON/MCH/Raw/Decoder/src/PageDecoder.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ uint16_t CHARGESUM_MASK = 0x100;
2626
template <typename FORMAT, typename CHARGESUM>
2727
struct PayloadDecoderImpl {
2828

29-
using type = struct {
29+
using type = struct PayloadDecoderImplReturnType {
3030
void process(uint32_t, gsl::span<const std::byte>);
3131
};
3232

Detectors/MUON/MCH/Workflow/src/DataDecoderSpec.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ class DataDecoderTask
148148
mDecoder->reset();
149149
decodeTF(pc);
150150
for (auto&& input : pc.inputs()) {
151-
if (input.spec->binding == "readout")
151+
if (input.spec->binding == "readout") {
152152
decodeReadout(input);
153+
}
153154
}
154155

155156
auto& digits = mDecoder->getOutputDigits();

0 commit comments

Comments
 (0)