clang-format: copy latest and re-format
clang-format-17 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: I04f38c33863fd3e2c9c6e9e20efc14105b79aedd
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/dump_manager_bmc.cpp b/dump_manager_bmc.cpp
index 68d0759..171a26c 100644
--- a/dump_manager_bmc.cpp
+++ b/dump_manager_bmc.cpp
@@ -327,10 +327,9 @@
// Delete the first existing file until the space is enough
while (size < BMC_DUMP_MIN_SPACE_REQD)
{
- auto delEntry = min_element(entries.begin(), entries.end(),
- [](const auto& l, const auto& r) {
- return l.first < r.first;
- });
+ auto delEntry = min_element(
+ entries.begin(), entries.end(),
+ [](const auto& l, const auto& r) { return l.first < r.first; });
auto delPath = std::filesystem::path(dumpDir) /
std::to_string(delEntry->first);