clang-format: update with latest

Copy the latest clang-format and apply to the repository.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I10a3fe64d4ca77601e6855daf46954579312c7df
diff --git a/src/processing.cpp b/src/processing.cpp
index 4298541..9b6e636 100644
--- a/src/processing.cpp
+++ b/src/processing.cpp
@@ -34,8 +34,8 @@
 
     auto inSkipList = std::find_if(skipNamespaces.begin(), skipNamespaces.end(),
                                    [&processName](auto prefix) {
-                                       return processName.starts_with(prefix);
-                                   }) != skipNamespaces.end();
+        return processName.starts_with(prefix);
+                      }) != skipNamespaces.end();
     return !(inSkipList || processName.empty());
 }