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: Ia442cdc88aaeaab2f1384cc46a56f5cd5e40f2f5
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/vpd_tool_impl.hpp b/vpd_tool_impl.hpp
index 82a1b8c..11e6ef8 100644
--- a/vpd_tool_impl.hpp
+++ b/vpd_tool_impl.hpp
@@ -5,6 +5,7 @@
 #include "types.hpp"
 
 #include <nlohmann/json.hpp>
+
 #include <string>
 
 using json = nlohmann::json;
@@ -283,18 +284,14 @@
      * object instantiation for dumpInventory option and
      * forceReset option.
      */
-    VpdTool()
-    {
-    }
+    VpdTool() {}
 
     /**
      * @brief Constructor
      * Constructor is called during the
      * object instantiation for dumpObject option.
      */
-    VpdTool(const std::string&& fru) : fruPath(std::move(fru))
-    {
-    }
+    VpdTool(const std::string&& fru) : fruPath(std::move(fru)) {}
 
     /**
      * @brief Constructor
@@ -307,6 +304,5 @@
         fruPath(std::move(fru)),
         recordName(std::move(recName)), keyword(std::move(kw)),
         value(std::move(val))
-    {
-    }
-};
\ No newline at end of file
+    {}
+};