Skip to content

Commit 659a25f

Browse files
committed
readability-braces-around-statements'
1 parent fa6b7f3 commit 659a25f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

PWGDQ/Core/HistogramsLibrary.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2102,8 +2102,9 @@ void o2::aod::dqhistograms::DefineHistograms(HistogramManager* hm, const char* h
21022102
// binning for phiv:
21032103
// steps of size pi/100
21042104
std::array<double, 101> phiv_bins{};
2105-
for (int i = 0; i <= 100; i++)
2105+
for (int i = 0; i <= 100; i++) {
21062106
phiv_bins[i] = o2::constants::math::PI / 100. * i;
2107+
}
21072108
int nbins_phiv = static_cast<int>(phiv_bins.size()) - 1;
21082109

21092110
// 3D histo

0 commit comments

Comments
 (0)