Skip to content

Commit 9eb618d

Browse files
Update TListHandler.h
1 parent 67fe5dd commit 9eb618d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Common/Tools/TListHandler.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -625,11 +625,11 @@ double TListHandler::getSize(double fillFraction)
625625
double size{};
626626
for (auto j = 0u; j < kMaxTListSize; ++j) {
627627
std::visit([&fillFraction, &size](auto&& hist) {
628-
if (hist)
629-
{
628+
if (hist) {
630629
size += HistFiller::getSize(hist, fillFraction);
631630
}
632-
}, mTListValue[j]);
631+
},
632+
mTListValue[j]);
633633
}
634634
return size;
635635
}

0 commit comments

Comments
 (0)