summaryrefslogtreecommitdiff
path: root/scripts
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 /scripts
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 'scripts')
-rwxr-xr-xscripts/parse_registries.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/parse_registries.py b/scripts/parse_registries.py
index 5f2229c7ef..3d66a0353c 100755
--- a/scripts/parse_registries.py
+++ b/scripts/parse_registries.py
@@ -50,7 +50,7 @@ def make_getter(dmtf_name, header_name, type_name):
def clang_format(filename):
- subprocess.check_call(["clang-format-11", "-i", filename])
+ subprocess.check_call(["clang-format-12", "-i", filename])
files = []
@@ -167,7 +167,7 @@ def make_privilege_registry():
privilege_list)
operation = operation.lower()
- registry.write("const auto& {}{} = privilegeSet{};\n".format(
+ registry.write("const static auto& {}{} = privilegeSet{};\n".format(
operation, entity , privilege_dict[privilege_string][1]))
registry.write("\n")
registry.write("} // namespace redfish::privileges\n")