summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2021-06-17 23:33:47 +0300
committerEd Tanous <ed@tanous.net>2021-06-22 22:45:25 +0300
commit2205bbf681bfac508a9e985b9581ce9d662db4df (patch)
tree1ca16b7b917dd10280e29686071b2e7b623d327f /src
parent54d1355fdcaea8a9b83c8fd5d7aac9b244a6146b (diff)
downloadbmcweb-2205bbf681bfac508a9e985b9581ce9d662db4df.tar.xz
Fix include what you use in bmcweb_config.h
As part of rearranging include files, it was found that a couple files don't include what they use. bmcweb_config.h.in uses size_t, which isn't in cstdint, and a couple files use variables out of bmcweb_config.h, which it didn't include. Tested: Code compiles; No functional changes. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I6d8f3617d10a30a1f0209e492841e9d3adc9c3f3
Diffstat (limited to 'src')
-rw-r--r--src/webserver_main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webserver_main.cpp b/src/webserver_main.cpp
index 902c32b968..eaedc1189e 100644
--- a/src/webserver_main.cpp
+++ b/src/webserver_main.cpp
@@ -1,3 +1,4 @@
+#include <bmcweb_config.h>
#include <systemd/sd-daemon.h>
#include <app.hpp>