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: Icbc50d46e84ee7ef756705e2b19741439a325074
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/interfaces.hpp b/interfaces.hpp
index 73ef643..5e99d19 100644
--- a/interfaces.hpp
+++ b/interfaces.hpp
@@ -34,11 +34,9 @@
 class ReadInterface
 {
   public:
-    ReadInterface()
-    {}
+    ReadInterface() {}
 
-    virtual ~ReadInterface()
-    {}
+    virtual ~ReadInterface() {}
 
     virtual ReadReturn read(void) = 0;
 
@@ -55,11 +53,9 @@
 class WriteInterface
 {
   public:
-    WriteInterface(int64_t min, int64_t max) : _min(min), _max(max)
-    {}
+    WriteInterface(int64_t min, int64_t max) : _min(min), _max(max) {}
 
-    virtual ~WriteInterface()
-    {}
+    virtual ~WriteInterface() {}
 
     virtual void write(double value) = 0;