Skip to content

Commit 5df80a7

Browse files
alibuildktf
authored andcommitted
Please consider the following formatting changes
1 parent c1e321b commit 5df80a7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Framework/Core/include/Framework/ASoAHelpers.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ std::vector<BinningIndex> groupTable(const T& table, const BP<Cs...>& binningPol
7878
{
7979
std::vector<BinningIndex> groupedIndices;
8080

81-
for(auto rowIterator : table) {
82-
auto values = binningPolicy.getBinningValues(rowIterator);
83-
auto val = binningPolicy.getBin(values);
84-
if (val != outsider) {
85-
groupedIndices.emplace_back(val, *std::get<1>(rowIterator.getIndices()));
86-
}
81+
for (auto rowIterator : table) {
82+
auto values = binningPolicy.getBinningValues(rowIterator);
83+
auto val = binningPolicy.getBin(values);
84+
if (val != outsider) {
85+
groupedIndices.emplace_back(val, *std::get<1>(rowIterator.getIndices()));
86+
}
8787
}
8888

8989
// Do a stable sort so that same categories entries are

0 commit comments

Comments
 (0)