summaryrefslogtreecommitdiff
path: root/redfish-core
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2024-03-26 23:19:52 +0300
committerEd Tanous <ed@tanous.net>2024-04-29 22:15:32 +0300
commit95c6307a9b2c02f74b5f5c677d6983f996332ee6 (patch)
tree551ad48ec6f6ca607225b123543459dbd10e76f8 /redfish-core
parent3ad903a76521547d2372c56a34c9c2e2c30ec98d (diff)
downloadbmcweb-95c6307a9b2c02f74b5f5c677d6983f996332ee6.tar.xz
Break out formatters
In the change made to move to std::format, we defined some custom type formatters in logging.hpp. This had the unintended effect of making all compile units pull in the majority of boost::url, and nlohmann::json as includes. This commit breaks out boost and json formatters into their own separate includes. Tested: Code compiles. Logging changes only. Change-Id: I6a788533169f10e19130a1910cd3be0cc729b020 Signed-off-by: Ed Tanous <ed@tanous.net>
Diffstat (limited to 'redfish-core')
-rw-r--r--redfish-core/include/utils/query_param.hpp1
-rw-r--r--redfish-core/src/utils/dbus_utils.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/redfish-core/include/utils/query_param.hpp b/redfish-core/include/utils/query_param.hpp
index 0f987632d2..2441c9f3c0 100644
--- a/redfish-core/include/utils/query_param.hpp
+++ b/redfish-core/include/utils/query_param.hpp
@@ -6,6 +6,7 @@
#include "error_messages.hpp"
#include "http_request.hpp"
#include "http_response.hpp"
+#include "json_formatters.hpp"
#include "logging.hpp"
#include "str_utility.hpp"
diff --git a/redfish-core/src/utils/dbus_utils.cpp b/redfish-core/src/utils/dbus_utils.cpp
index bd114a3d74..f30e6ed46a 100644
--- a/redfish-core/src/utils/dbus_utils.cpp
+++ b/redfish-core/src/utils/dbus_utils.cpp
@@ -1,6 +1,7 @@
#include "utils/dbus_utils.hpp"
#include "async_resp.hpp"
+#include "boost_formatters.hpp"
#include "error_messages.hpp"
#include "logging.hpp"