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: I6bbb587615b9d6f158900201ca04a647cb3a8f96
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/src/exception.cpp b/src/exception.cpp
index c969295..cd79ebc 100644
--- a/src/exception.cpp
+++ b/src/exception.cpp
@@ -24,26 +24,22 @@
 WouldBlock::WouldBlock(const char* what) :
     std::system_error(std::make_error_code(std::errc::operation_would_block),
                       what)
-{
-}
+{}
 
 WouldBlock::WouldBlock(const std::string& what) :
     std::system_error(std::make_error_code(std::errc::operation_would_block),
                       what)
-{
-}
+{}
 
 Eof::Eof(const char* what) :
     std::system_error(std::make_error_code(std::errc::no_message_available),
                       what)
-{
-}
+{}
 
 Eof::Eof(const std::string& what) :
     std::system_error(std::make_error_code(std::errc::no_message_available),
                       what)
-{
-}
+{}
 
 } // namespace exception
 } // namespace stdplus