clang-format: update with latest

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I461b17ee197528f125239f3cb8678dca45eaa634
diff --git a/test/utility/type_traits.cpp b/test/utility/type_traits.cpp
index e5197d2..b5cc3d9 100644
--- a/test/utility/type_traits.cpp
+++ b/test/utility/type_traits.cpp
@@ -14,7 +14,6 @@
 
 TEST(TypeTraits, Basic)
 {
-
     static_assert(is_same_v<char, array_to_ptr_t<char, char>>,
                   "array_to_ptr_t<char, char> != char");
 
@@ -41,8 +40,7 @@
     {
         using value_type = std::pair<int, int>;
 
-        void find(std::tuple_element_t<0, value_type>)
-        {}
+        void find(std::tuple_element_t<0, value_type>) {}
     };
 
     struct Bar
@@ -70,8 +68,7 @@
     {
         using value_type = std::pair<int, int>;
 
-        void contains(std::tuple_element_t<0, value_type>)
-        {}
+        void contains(std::tuple_element_t<0, value_type>) {}
     };
 
     struct Bar