summaryrefslogtreecommitdiff
path: root/src/webserver_main.cpp
diff options
context:
space:
mode:
authorEd Tanous <ed@tanous.net>2020-09-16 07:15:44 +0300
committerEd Tanous <ed@tanous.net>2020-09-22 23:42:36 +0300
commit02379d3572bc471ecbb75f33e5a03203c4b3e517 (patch)
tree933a6e9077cde7a16de5dcce5a85a25ce596b877 /src/webserver_main.cpp
parent684bb4b89f88b394b00b140d71c161143393f80b (diff)
downloadbmcweb-02379d3572bc471ecbb75f33e5a03203c4b3e517.tar.xz
Fix IBM management console to match coding standard
Lots of missing inline definitions, a case where a RVO move is not guaranteed when returning a variant, and removing the header checks, which means that these types of build errors wont happen in the future. Tested: Should be no impact, but could someone from the IBM team grab these changes and sanity check them? Signed-off-by: Ed Tanous <ed@tanous.net> Change-Id: Iea0a06b8e744542a7d08e38217718e7a969f2827
Diffstat (limited to 'src/webserver_main.cpp')
-rw-r--r--src/webserver_main.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/webserver_main.cpp b/src/webserver_main.cpp
index 922ac47659..0694b19517 100644
--- a/src/webserver_main.cpp
+++ b/src/webserver_main.cpp
@@ -4,16 +4,12 @@
#include <boost/asio/io_context.hpp>
#include <dbus_monitor.hpp>
#include <dbus_singleton.hpp>
+#include <ibm/management_console_rest.hpp>
#include <image_upload.hpp>
#include <kvm_websocket.hpp>
#include <login_routes.hpp>
#include <obmc_console.hpp>
#include <openbmc_dbus_rest.hpp>
-
-#include <memory>
-#ifdef BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
-#include <ibm/management_console_rest.hpp>
-#endif
#include <redfish.hpp>
#include <redfish_v1.hpp>
#include <sdbusplus/asio/connection.hpp>
@@ -24,6 +20,7 @@
#include <vm_websocket.hpp>
#include <webassets.hpp>
+#include <memory>
#include <string>
#ifdef BMCWEB_ENABLE_VM_NBDPROXY