clang-format: update to latest from docs repo
This is from openbmc/docs/style/cpp/.clang-format
Other OpenBMC repos are doing the same.
Tested: Built and validator passed.
Change-Id: Ief26c755c9ce012823e16a506342b0547a53517a
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/redfish-core/include/privileges.hpp b/redfish-core/include/privileges.hpp
index 35f619b..0282f35 100644
--- a/redfish-core/include/privileges.hpp
+++ b/redfish-core/include/privileges.hpp
@@ -17,10 +17,11 @@
#include <logging.h>
-#include <array>
-#include <bitset>
#include <boost/beast/http/verb.hpp>
#include <boost/container/flat_map.hpp>
+
+#include <array>
+#include <bitset>
#include <cstdint>
#include <vector>
@@ -211,8 +212,7 @@
private:
Privileges(const std::bitset<maxPrivilegeCount>& p) : privilegeBitset{p}
- {
- }
+ {}
std::bitset<maxPrivilegeCount> privilegeBitset = 0;
};