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/handler.cpp b/src/handler.cpp
index a1efb84..a4401bf 100644
--- a/src/handler.cpp
+++ b/src/handler.cpp
@@ -19,9 +19,10 @@
     // If an entry for the object path already exists, just add the
     // service name and interfaces to that entry, otherwise create
     // a new entry.
-    auto entry = std::find_if(
-        objectMap.begin(), objectMap.end(),
-        [&objectPath](const auto& i) { return objectPath == i.first; });
+    auto entry = std::find_if(objectMap.begin(), objectMap.end(),
+                              [&objectPath](const auto& i) {
+        return objectPath == i.first;
+    });
 
     if (entry != objectMap.end())
     {