summaryrefslogtreecommitdiffstats
path: root/library/cpp/histogram/adaptive/multi_histogram.h
diff options
context:
space:
mode:
authorIvan Korostelev <[email protected]>2022-02-10 16:46:41 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:41 +0300
commitb5e813096385b2d9e16b572711fec5bf2eb5058d (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/histogram/adaptive/multi_histogram.h
parentf3a52f9d3e18d1159abbc85fa65eeda69d971657 (diff)
Restoring authorship annotation for Ivan Korostelev <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/histogram/adaptive/multi_histogram.h')
-rw-r--r--library/cpp/histogram/adaptive/multi_histogram.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/histogram/adaptive/multi_histogram.h b/library/cpp/histogram/adaptive/multi_histogram.h
index af5778718f4..41caac5ba68 100644
--- a/library/cpp/histogram/adaptive/multi_histogram.h
+++ b/library/cpp/histogram/adaptive/multi_histogram.h
@@ -5,7 +5,7 @@
#include <library/cpp/histogram/adaptive/protos/histo.pb.h>
-#include <util/generic/hash.h>
+#include <util/generic/hash.h>
#include <util/generic/ptr.h>
#include <utility>
@@ -119,12 +119,12 @@ namespace NKiwiAggr {
it->second->ToProto(*histo);
}
}
-
- void PrecomputePartialSums() {
- for (auto& it : Histograms) {
- it.second->PrecomputePartialSums();
- }
- }
+
+ void PrecomputePartialSums() {
+ for (auto& it : Histograms) {
+ it.second->PrecomputePartialSums();
+ }
+ }
};
template <class TMerger, class TSomeMultiHistogram>