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: I077deb6e98025e4e8c6abd4d039f9af4db19342b
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/log_manager.cpp b/log_manager.cpp
index 23e7bd6..d573972 100644
--- a/log_manager.cpp
+++ b/log_manager.cpp
@@ -384,8 +384,8 @@
     // Verify we don't already have this entry blocking
     auto it = find_if(this->blockingErrors.begin(), this->blockingErrors.end(),
                       [&](const std::unique_ptr<Block>& obj) {
-                          return obj->entryId == entryId;
-                      });
+        return obj->entryId == entryId;
+    });
     if (it != this->blockingErrors.end())
     {
         // Already recorded so just return
@@ -470,8 +470,8 @@
     // First look for blocking object and remove
     auto it = find_if(blockingErrors.begin(), blockingErrors.end(),
                       [&](const std::unique_ptr<Block>& obj) {
-                          return obj->entryId == entryId;
-                      });
+        return obj->entryId == entryId;
+    });
     if (it != blockingErrors.end())
     {
         blockingErrors.erase(it);