summaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
Diffstat (limited to 'storageframework')
-rw-r--r--storageframework/src/vespa/storageframework/generic/status/statusreportermap.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/storageframework/src/vespa/storageframework/generic/status/statusreportermap.h b/storageframework/src/vespa/storageframework/generic/status/statusreportermap.h
index 5d7c3383c31..8a8e9c47ae1 100644
--- a/storageframework/src/vespa/storageframework/generic/status/statusreportermap.h
+++ b/storageframework/src/vespa/storageframework/generic/status/statusreportermap.h
@@ -7,10 +7,11 @@
*/
#pragma once
-#include <vespa/storageframework/generic/status/statusreporter.h>
+#include <vector>
-namespace storage {
-namespace framework {
+namespace storage::framework {
+
+class StatusReporter;
struct StatusReporterMap {
virtual ~StatusReporterMap() {}
@@ -20,6 +21,4 @@ struct StatusReporterMap {
virtual std::vector<const StatusReporter*> getStatusReporters() = 0;
};
-} // framework
-} // storage
-
+} // storage::framework