summaryrefslogtreecommitdiffstats
path: root/storageframework
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-05-31 16:25:42 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-05-31 16:25:42 +0200
commit9924dcb71892a6f2bfd4ad4e796d6c19cd90603f (patch)
treee56a2978e7133a428866237d40d3e92006896559 /storageframework
parente6fdf24666ba3154d3e5eaa9956506b711cf57d5 (diff)
If you can not reconfigure, just make a note of it and exit quickly
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