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: Ia968a74764d3bda33160a8a9890629ed3cc94d0e
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/include/erase.hpp b/include/erase.hpp
index 8acd3d8..e591043 100644
--- a/include/erase.hpp
+++ b/include/erase.hpp
@@ -12,8 +12,7 @@
     /** @brief creates an erase object
      *  @param inDevPath the linux path for the block device
      */
-    Erase(std::string_view inDevPath) : devPath(inDevPath)
-    {}
+    Erase(std::string_view inDevPath) : devPath(inDevPath) {}
 
   protected:
     /* The linux path for the block device */
diff --git a/include/pattern.hpp b/include/pattern.hpp
index e8c61ee..7e9b126 100644
--- a/include/pattern.hpp
+++ b/include/pattern.hpp
@@ -21,8 +21,7 @@
      *
      *  @param[in] inDevPath - the linux device path for the block device.
      */
-    Pattern(std::string_view inDevPath) : Erase(inDevPath)
-    {}
+    Pattern(std::string_view inDevPath) : Erase(inDevPath) {}
 
     /** @brief writes an uncompressible random pattern to the drive, using
      * default parameters. It also throws errors accordingly.
diff --git a/include/verifyDriveGeometry.hpp b/include/verifyDriveGeometry.hpp
index ee8b3b7..5d17957 100644
--- a/include/verifyDriveGeometry.hpp
+++ b/include/verifyDriveGeometry.hpp
@@ -15,8 +15,7 @@
      *
      *  @param[in] inDevPath - the linux device path for the block device.
      */
-    VerifyDriveGeometry(std::string_view inDevPath) : Erase(inDevPath)
-    {}
+    VerifyDriveGeometry(std::string_view inDevPath) : Erase(inDevPath) {}
 
     /** @brief Test if input is in between the max and min expected sizes,
      * and throws errors accordingly.
diff --git a/include/zero.hpp b/include/zero.hpp
index bfa240d..25bc04e 100644
--- a/include/zero.hpp
+++ b/include/zero.hpp
@@ -20,8 +20,7 @@
      *
      *  @param[in] inDevPath - the linux device path for the block device.
      */
-    Zero(std::string_view inDevPath) : Erase(inDevPath)
-    {}
+    Zero(std::string_view inDevPath) : Erase(inDevPath) {}
     /** @brief writes zero to the drive
      * and throws errors accordingly.
      *  @param[in] driveSize - the size of the block device in bytes