Skip to content

Commit cde1139

Browse files
Change for-loop initialisation type
1 parent a439fb9 commit cde1139

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGLF/Tasks/Strangeness/derivedlambdakzeroanalysis.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1543,7 +1543,7 @@ struct derivedlambdakzeroanalysis {
15431543
// Fill first bin: all candidates
15441544
histos.fill(HIST("GeneralQA/hSelectionV0s"), 0);
15451545
// Loop over all bits in the enum and fill if passed
1546-
for (int i = 0; i <= selPhysPrimAntiLambda; i++) {
1546+
for (uint64_t i = 0; i <= selPhysPrimAntiLambda; i++) {
15471547
if (BITCHECK(selMap, i)) {
15481548
histos.fill(HIST("GeneralQA/hSelectionV0s"), i + 1); // +1 because bin 0 = "All"
15491549
}

0 commit comments

Comments
 (0)