@@ -1712,7 +1712,7 @@ struct SimpleHistogram {
1712
1712
template <typename ... Tags> struct Counter : public MetricBase {
1713
1713
static Counter<Tags...> *New (std::string_view name, MetricTagDescriptor<Tags>... fieldnames);
1714
1714
1715
- Counter<Tags...> (std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1715
+ Counter (std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1716
1716
: Counter<Tags...>(std::string(name), std::vector<MetricTag>({toMetricTag (descriptors)...})) {
1717
1717
}
1718
1718
@@ -1763,7 +1763,7 @@ inline Counter<Tags...> *Counter<Tags...>::New(std::string_view name,
1763
1763
template <typename ... Tags> struct Gauge : public MetricBase {
1764
1764
static Gauge<Tags...> *New (std::string_view name, MetricTagDescriptor<Tags>... fieldnames);
1765
1765
1766
- Gauge<Tags...> (std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1766
+ Gauge (std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1767
1767
: Gauge<Tags...>(std::string(name), std::vector<MetricTag>({toMetricTag (descriptors)...})) {}
1768
1768
1769
1769
SimpleGauge resolve (Tags... f) {
@@ -1809,7 +1809,7 @@ inline Gauge<Tags...> *Gauge<Tags...>::New(std::string_view name,
1809
1809
template <typename ... Tags> struct Histogram : public MetricBase {
1810
1810
static Histogram<Tags...> *New (std::string_view name, MetricTagDescriptor<Tags>... fieldnames);
1811
1811
1812
- Histogram<Tags...> (std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1812
+ Histogram (std::string_view name, MetricTagDescriptor<Tags>... descriptors)
1813
1813
: Histogram<Tags...>(std::string(name),
1814
1814
std::vector<MetricTag>({toMetricTag (descriptors)...})) {}
1815
1815
0 commit comments