We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2af21d commit 32e2877Copy full SHA for 32e2877
1 file changed
Common/Tools/TListHandler.h
@@ -618,12 +618,12 @@ double TListHandler::getSize(double fillFraction)
618
{
619
double size{};
620
for (auto j = 0u; j < kMaxTListSize; ++j) {
621
- std::visit([&fillFraction, &size](auto&& hist) {
622
- if (hist)
623
- {
+ std::visit([&fillFraction, &size](auto&& hist) {
+ if (hist) {
624
size += HistFiller::getSize(hist, fillFraction);
625
- }
626
- }, mTListValue[j]);
+ }
+ },
+ mTListValue[j]);
627
}
628
return size;
629
0 commit comments