From 2205bbf681bfac508a9e985b9581ce9d662db4df Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Thu, 17 Jun 2021 13:33:47 -0700 Subject: 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 Change-Id: I6d8f3617d10a30a1f0209e492841e9d3adc9c3f3 --- include/security_headers.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/security_headers.hpp') diff --git a/include/security_headers.hpp b/include/security_headers.hpp index 6cf26898f6..966fbdf59c 100644 --- a/include/security_headers.hpp +++ b/include/security_headers.hpp @@ -1,5 +1,7 @@ #pragma once +#include + #include inline void addSecurityHeaders(const crow::Request& req [[maybe_unused]], -- cgit v1.2.3