diff options
Diffstat (limited to 'library/cpp/histogram/adaptive/fixed_bin_histogram.cpp')
-rw-r--r-- | library/cpp/histogram/adaptive/fixed_bin_histogram.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp b/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp index 558aba9e2d..156bc3d1c5 100644 --- a/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp +++ b/library/cpp/histogram/adaptive/fixed_bin_histogram.cpp @@ -124,10 +124,10 @@ namespace NKiwiAggr { } } - void TFixedBinHistogram::Merge(const THistogram& /*histo*/, double /*multiplier*/) { - ythrow yexception() << "Method is not implemented for TFixedBinHistogram"; - } - + void TFixedBinHistogram::Merge(const THistogram& /*histo*/, double /*multiplier*/) { + ythrow yexception() << "Method is not implemented for TFixedBinHistogram"; + } + void TFixedBinHistogram::Merge(const TVector<THistogram>& histogramsToMerge) { TVector<IHistogramPtr> parsedHistogramsToMerge; for (size_t i = 0; i < histogramsToMerge.size(); ++i) { |