Skip to content

Commit 6a441f3

Browse files
committed
Use auto for values returned from functions
1 parent 4139c47 commit 6a441f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGHF/D2H/Tasks/taskLc.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ struct HfTaskLc {
901901

902902
for (const auto& collision : collisions) {
903903

904-
uint32_t rejectionMask{0}; // 32 bits, in case new ev. selections will be added
904+
auto rejectionMask{0}; // 32 bits, in case new ev. selections will be added
905905
float centrality{-1.f};
906906
rejectionMask = hfEvSel.getHfCollisionRejectionMaskWithUpc<true, CentralityEstimator::None, BCsType>(collision, centrality, ccdb, qaRegistry, bcs);
907907
if (rejectionMask != 0) {

0 commit comments

Comments
 (0)