From a8e884fc4e2fae0c79454ee865c9b9e0534f6763 Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Fri, 13 Jan 2023 17:40:03 -0800 Subject: Fix a couple #includes In the continual quest to get tidy passing when run in isolation, fix some more includes. This includes removing a circular #include to app.hpp. We don't use app.hpp in these files, which is why our code compiles but having this include it here causes a few circular dependencies app.hpp -> http_server.hpp -> persistent_data.hpp -> app.hpp. app.hpp -> http_server.hpp -> authentication.hpp -> app.hpp. This confuses clang when run on header files directly. Fix a couple more includes at the same time. Tested: Code compiles Signed-off-by: Ed Tanous Change-Id: Ib62d78b49c7e38ef7061c9fbbf6b3d463f11917d --- test/redfish-core/include/redfish_aggregator_test.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/redfish-core/include/redfish_aggregator_test.cpp b/test/redfish-core/include/redfish_aggregator_test.cpp index 345854fdde..4653a81527 100644 --- a/test/redfish-core/include/redfish_aggregator_test.cpp +++ b/test/redfish-core/include/redfish_aggregator_test.cpp @@ -1,3 +1,4 @@ +#include "async_resp.hpp" #include "redfish_aggregator.hpp" #include -- cgit v1.2.3