clang-format: update latest spec and reformat

Copy the latest format file from the docs repository and apply.

Change-Id: If152304b21dd2daaa2f79255a4f98218615efb05
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/sdbusplus.hpp b/sdbusplus.hpp
index 4068923..52c2a7e 100644
--- a/sdbusplus.hpp
+++ b/sdbusplus.hpp
@@ -153,10 +153,10 @@
 
     /** @brief Invoke a method and read the response. */
     template <typename Ret, typename... Args>
-    static auto
-        callMethodAndRead(sdbusplus::bus_t& bus, const std::string& busName,
-                          const std::string& path, const std::string& interface,
-                          const std::string& method, Args&&... args)
+    static auto callMethodAndRead(
+        sdbusplus::bus_t& bus, const std::string& busName,
+        const std::string& path, const std::string& interface,
+        const std::string& method, Args&&... args)
     {
         sdbusplus::message_t respMsg = callMethod<Args...>(
             bus, busName, path, interface, method, std::forward<Args>(args)...);