Skip to content

Commit a2af21d

Browse files
Update TListHandler.h
1 parent ac5ea6f commit a2af21d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Common/Tools/TListHandler.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,12 @@ double TListHandler::getSize(double fillFraction)
618618
{
619619
double size{};
620620
for (auto j = 0u; j < kMaxTListSize; ++j) {
621-
std::visit([&fillFraction, &size](auto&& hist) { if (hist) { size += HistFiller::getSize(hist, fillFraction);} }, mTListValue[j]);
621+
std::visit([&fillFraction, &size](auto&& hist) {
622+
if (hist)
623+
{
624+
size += HistFiller::getSize(hist, fillFraction);
625+
}
626+
}, mTListValue[j]);
622627
}
623628
return size;
624629
}

0 commit comments

Comments
 (0)