summaryrefslogtreecommitdiff
path: root/include/forward_unauthorized.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2021-06-21 18:27:45 +0300
committerEd Tanous <ed@tanous.net>2021-07-13 21:54:54 +0300
commit4f48d5f67f293e50340e7f4bf866435e03a6fc62 (patch)
treea18e9b9826fadb48721f700e2cfa749879ecce15 /include/forward_unauthorized.hpp
parent83fd8e19867f43f3a175d1ede65ad8636da553b3 (diff)
downloadbmcweb-4f48d5f67f293e50340e7f4bf866435e03a6fc62.tar.xz
Make code compile with clang-13
Clang-13 rightfully warns that the hasWebuiRoute variable isn't declared as static. This commit resolves that, and adds the static keyword so it can be used in multiple compile units. It also adds the static keyword to the privilege registry, and the inline keyword to many methods that now need it. clang-format is also updated to version 12 in parse_registies.py, as that's what CI uses, and what most people have installed. Tested: Followed clang-tidy instructions in README.md "bitbake bmcweb" step now succeeds. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: Id43b13606754cb37a404799fce155599ac3a3240
Diffstat (limited to 'include/forward_unauthorized.hpp')
-rw-r--r--include/forward_unauthorized.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/forward_unauthorized.hpp b/include/forward_unauthorized.hpp
index 02e112307e..46a25d4b42 100644
--- a/include/forward_unauthorized.hpp
+++ b/include/forward_unauthorized.hpp
@@ -6,7 +6,7 @@
namespace forward_unauthorized
{
-bool hasWebuiRoute = false;
+static bool hasWebuiRoute = false;
inline void sendUnauthorized(const crow::Request& req, crow::Response& res)
{