Skip to content

Commit e1beffe

Browse files
committed
Use std::array instead of C-array
1 parent bcc52c7 commit e1beffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PWGCF/TableProducer/filter2Prong.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ struct Filter2Prong {
123123
using ResoV0s = aod::V0Datas;
124124

125125
std::unique_ptr<TFormula> sigmaFormula;
126-
uint sigmaFormulaParamIndex[4];
126+
std::array<uint, 4> sigmaFormulaParamIndex;
127127

128128
void init(InitContext&)
129129
{

0 commit comments

Comments
 (0)