File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,12 @@ class HistogramBuilder {
23
23
HistogramBuilder& Labels (const std::map<std::string, std::string>& labels);
24
24
HistogramBuilder& Name (const std::string&);
25
25
HistogramBuilder& Help (const std::string&);
26
- HistogramBuilder& Buckets (const std::vector<double >&);
27
26
Family<Histogram>& Register (Registry&);
28
27
29
28
private:
30
29
std::map<std::string, std::string> labels_;
31
30
std::string name_;
32
31
std::string help_;
33
- std::vector<double > buckets_;
34
32
};
35
33
}
36
34
}
Original file line number Diff line number Diff line change @@ -23,12 +23,6 @@ HistogramBuilder& HistogramBuilder::Help(const std::string& help) {
23
23
return *this ;
24
24
}
25
25
26
- HistogramBuilder& HistogramBuilder::Buckets (
27
- const std::vector<double >& buckets) {
28
- buckets_ = buckets;
29
- return *this ;
30
- }
31
-
32
26
Family<Histogram>& HistogramBuilder::Register (Registry& registry) {
33
27
return registry.AddHistogram (name_, help_, labels_);
34
28
}
You can’t perform that action at this time.
0 commit comments