Skip to content

Commit adb5bd7

Browse files
committed
Fix: fix linter warning
1 parent 52f5ec3 commit adb5bd7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

‎PWGCF/Femto/Core/dndetaBuilder.h‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,9 @@ class DndetaBuilder
268268
if (!col.has_fMcCol() || bestReco[static_cast<std::size_t>(col.fMcColId())] != col.globalIndex()) {
269269
continue;
270270
}
271-
if (!selectCollision(col, [&]() { return recoTrigger(col); })) {
271+
if (!selectCollision(col, [&]() {
272+
return recoTrigger(col);
273+
})) {
272274
continue;
273275
}
274276
selectedReco[static_cast<std::size_t>(col.fMcColId())] = col.globalIndex();

0 commit comments

Comments
 (0)