aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h b/searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h
index e5a3b41a487..876287eb835 100644
--- a/searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h
+++ b/searchcore/src/vespa/searchcore/proton/metrics/content_proton_metrics.h
@@ -26,18 +26,18 @@ struct ContentProtonMetrics : metrics::MetricSet
ExecutorMetrics match;
ExecutorMetrics docsum;
ExecutorMetrics shared;
- ExecutorMetrics warmup;
+ ExecutorMetrics warmup; //TODO not used anymore, remove
ExecutorMetrics field_writer;
- ProtonExecutorMetrics(metrics::MetricSet *parent);
- ~ProtonExecutorMetrics();
+ explicit ProtonExecutorMetrics(metrics::MetricSet *parent);
+ ~ProtonExecutorMetrics() override;
};
struct SessionCacheMetrics : metrics::MetricSet {
SessionManagerMetrics search;
SessionManagerMetrics grouping;
- SessionCacheMetrics(metrics::MetricSet *parent);
+ explicit SessionCacheMetrics(metrics::MetricSet *parent);
~SessionCacheMetrics() override;
};