We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fedb83f commit f4fa1fcCopy full SHA for f4fa1fc
1 file changed
Common/Tools/TListHandler.h
@@ -624,12 +624,12 @@ double TListHandler::getSize(double fillFraction)
624
{
625
double size{};
626
for (auto j = 0u; j < kMaxTListSize; ++j) {
627
- std::visit([&fillFraction, &size](auto&& hist) {
628
- if (hist)
629
- {
+ std::visit([&fillFraction, &size](auto&& hist) {
+ if (hist) {
630
size += HistFiller::getSize(hist, fillFraction);
631
- }
632
- }, mTListValue[j]);
+ }
+ },
+ mTListValue[j]);
633
}
634
return size;
635
0 commit comments