Skip to content

Commit bf8a402

Browse files
committed
Fix codechecker violation
1 parent 2d96089 commit bf8a402

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Detectors/EMCAL/base/src/ClusterFactory.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,9 @@ void ClusterFactory<InputType>::evalNExMax(gsl::span<const int> inputsIndices, A
528528

529529
// loop over all other cells in cluster
530530
for (size_t j = 0; j < n; j++) {
531-
if (i == j)
531+
if (i == j) {
532532
continue;
533+
}
533534

534535
// adjacent cell is any cell with adjacent phi or eta index
535536
if (std::abs(rows[i] - rows[j]) <= 1 &&

0 commit comments

Comments
 (0)