Skip to content

Commit 3b8263a

Browse files
authored
Fixing megalinter error
1 parent d1253ca commit 3b8263a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGCF/FemtoUniverse/Core/FemtoUniverseObjectSelection.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ class FemtoUniverseObjectSelection
182182
std::vector<selVariable> selVarVec;
183183
for (auto it : mSelections) {
184184
auto selVar = it.getSelectionVariable();
185-
if (std::none_of(selVarVec.begin(), selVarVec.end(), [selVar](selVariable a) { return a == selVar; })) {
185+
if (std::none_of(selVarVec.begin(), selVarVec.end(),
186+
[selVar](selVariable a) { return a == selVar; })) {
186187
selVarVec.push_back(selVar);
187188
}
188189
}

0 commit comments

Comments
 (0)