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: I7801712fe34e10fec586d1e962afebd9ebcce46c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/mslverify/util.hpp b/mslverify/util.hpp
index 0dfe6e3..4c1ea00 100644
--- a/mslverify/util.hpp
+++ b/mslverify/util.hpp
@@ -118,9 +118,9 @@
 {
     using namespace std::literals::string_literals;
 
-    auto msg =
-        callMethod(bus, busName, path, "org.freedesktop.DBus.Properties"s,
-                   "Get"s, interface, property);
+    auto msg = callMethod(bus, busName, path,
+                          "org.freedesktop.DBus.Properties"s, "Get"s, interface,
+                          property);
     ::std::variant<Property> value;
     msg.read(value);
     return std::get<Property>(value);