summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--redfish-core/include/registries/base_message_registry.hpp4
-rw-r--r--redfish-core/include/registries/openbmc_message_registry.hpp5
-rw-r--r--redfish-core/include/registries/privilege_registry.hpp4
-rw-r--r--redfish-core/include/registries/resource_event_message_registry.hpp4
-rw-r--r--redfish-core/include/registries/task_event_message_registry.hpp4
-rwxr-xr-xscripts/parse_registries.py8
6 files changed, 22 insertions, 7 deletions
diff --git a/redfish-core/include/registries/base_message_registry.hpp b/redfish-core/include/registries/base_message_registry.hpp
index cf5861e33c..16c00110a5 100644
--- a/redfish-core/include/registries/base_message_registry.hpp
+++ b/redfish-core/include/registries/base_message_registry.hpp
@@ -9,7 +9,9 @@
* should be first pushed to the relevant registry in the DMTF
* github organization.
***************************************************************/
-#include <registries.hpp>
+#include "registries.hpp"
+
+#include <array>
// clang-format off
diff --git a/redfish-core/include/registries/openbmc_message_registry.hpp b/redfish-core/include/registries/openbmc_message_registry.hpp
index 4810eb479b..77637a5d11 100644
--- a/redfish-core/include/registries/openbmc_message_registry.hpp
+++ b/redfish-core/include/registries/openbmc_message_registry.hpp
@@ -14,7 +14,10 @@
// limitations under the License.
*/
#pragma once
-#include <registries.hpp>
+
+#include "registries.hpp"
+
+#include <array>
/*
Please read this before making edits to the structure below.
diff --git a/redfish-core/include/registries/privilege_registry.hpp b/redfish-core/include/registries/privilege_registry.hpp
index d42d530df3..57c9e0248e 100644
--- a/redfish-core/include/registries/privilege_registry.hpp
+++ b/redfish-core/include/registries/privilege_registry.hpp
@@ -9,7 +9,9 @@
* should be first pushed to the relevant registry in the DMTF
* github organization.
***************************************************************/
-#include <privileges.hpp>
+#include "privileges.hpp"
+
+#include <array>
// clang-format off
diff --git a/redfish-core/include/registries/resource_event_message_registry.hpp b/redfish-core/include/registries/resource_event_message_registry.hpp
index d161882467..83ca7865a5 100644
--- a/redfish-core/include/registries/resource_event_message_registry.hpp
+++ b/redfish-core/include/registries/resource_event_message_registry.hpp
@@ -9,7 +9,9 @@
* should be first pushed to the relevant registry in the DMTF
* github organization.
***************************************************************/
-#include <registries.hpp>
+#include "registries.hpp"
+
+#include <array>
// clang-format off
diff --git a/redfish-core/include/registries/task_event_message_registry.hpp b/redfish-core/include/registries/task_event_message_registry.hpp
index 94c74d16da..627ef130dd 100644
--- a/redfish-core/include/registries/task_event_message_registry.hpp
+++ b/redfish-core/include/registries/task_event_message_registry.hpp
@@ -9,7 +9,9 @@
* should be first pushed to the relevant registry in the DMTF
* github organization.
***************************************************************/
-#include <registries.hpp>
+#include "registries.hpp"
+
+#include <array>
// clang-format off
diff --git a/scripts/parse_registries.py b/scripts/parse_registries.py
index 8c300eda2e..bc546575e3 100755
--- a/scripts/parse_registries.py
+++ b/scripts/parse_registries.py
@@ -19,7 +19,9 @@ WARNING = '''/****************************************************************
***************************************************************/'''
REGISTRY_HEADER = PRAGMA_ONCE + WARNING + '''
-#include <registries.hpp>
+#include "registries.hpp"
+
+#include <array>
// clang-format off
@@ -166,7 +168,9 @@ def get_variable_name_for_privilege_set(privilege_list):
PRIVILEGE_HEADER = PRAGMA_ONCE + WARNING + '''
-#include <privileges.hpp>
+#include "privileges.hpp"
+
+#include <array>
// clang-format off