clang-format: copy latest and re-format
clang-format-16 has some backwards incompatible changes that require
additional settings for best compatibility and re-running the formatter.
Copy the latest .clang-format from the docs repository and reformat the
repository.
Change-Id: I862ed296ce1f42dba7047a74540d9004ad78130c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/command/guid.cpp b/command/guid.cpp
index 253a2dc..5d6c07a 100644
--- a/command/guid.cpp
+++ b/command/guid.cpp
@@ -73,8 +73,8 @@
for (size_t iter = 0, inc = 0; iter < len && inc < BMC_GUID_LEN;
iter += 2, inc++)
{
- uint8_t hexVal =
- std::strtoul(readUUID.substr(iter, 2).c_str(), NULL, 16);
+ uint8_t hexVal = std::strtoul(readUUID.substr(iter, 2).c_str(),
+ NULL, 16);
guid[inc] = hexVal;
}
} while (0);