diff --git a/Framework/Core/include/Framework/ASoAHelpers.h b/Framework/Core/include/Framework/ASoAHelpers.h index 129224017e294..0449bdfdc2a0c 100644 --- a/Framework/Core/include/Framework/ASoAHelpers.h +++ b/Framework/Core/include/Framework/ASoAHelpers.h @@ -78,12 +78,12 @@ std::vector groupTable(const T& table, const BP& binningPol { std::vector groupedIndices; - for(auto rowIterator : table) { - auto values = binningPolicy.getBinningValues(rowIterator); - auto val = binningPolicy.getBin(values); - if (val != outsider) { - groupedIndices.emplace_back(val, *std::get<1>(rowIterator.getIndices())); - } + for (auto rowIterator : table) { + auto values = binningPolicy.getBinningValues(rowIterator); + auto val = binningPolicy.getBin(values); + if (val != outsider) { + groupedIndices.emplace_back(val, *std::get<1>(rowIterator.getIndices())); + } } // Do a stable sort so that same categories entries are