Remove the is_sum argument from BIF histogram creation methods

This commit is contained in:
Tim Wojtulewicz 2024-04-24 12:08:48 -07:00
parent 0ee3b8c506
commit 53c3d2032a
2 changed files with 3 additions and 6 deletions

View file

@ -428,8 +428,7 @@ function register_histogram_family(opts: MetricOpts): HistogramFamily
opts$labels,
opts$bounds,
opts$help_text,
opts$unit,
opts?$is_total ? opts$is_total : F
opts$unit
);
return HistogramFamily($__family=f, $__labels=opts$labels);
}