Skip to content

Commit 67fe5dd

Browse files
Update TListHandler.h
1 parent fedb83f commit 67fe5dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Common/Tools/TListHandler.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -624,11 +624,11 @@ double TListHandler::getSize(double fillFraction)
624624
{
625625
double size{};
626626
for (auto j = 0u; j < kMaxTListSize; ++j) {
627-
std::visit([&fillFraction, &size](auto&& hist) {
628-
if (hist)
629-
{
627+
std::visit([&fillFraction, &size](auto&& hist) {
628+
if (hist)
629+
{
630630
size += HistFiller::getSize(hist, fillFraction);
631-
}
631+
}
632632
}, mTListValue[j]);
633633
}
634634
return size;

0 commit comments

Comments
 (0)