clang-format: reformat for clang-10

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ic29cef46595c8931faf4bd18d7952e0a07a1280c
diff --git a/.clang-format b/.clang-format
index ea71ad6..692faa2 100644
--- a/.clang-format
+++ b/.clang-format
@@ -21,6 +21,7 @@
 BinPackArguments: true
 BinPackParameters: true
 BraceWrapping:
+  AfterCaseLabel:  true
   AfterClass:      true
   AfterControlStatement: true
   AfterEnum:       true
diff --git a/sdbusplus/asio/connection.hpp b/sdbusplus/asio/connection.hpp
index 796d05a..32f5625 100644
--- a/sdbusplus/asio/connection.hpp
+++ b/sdbusplus/asio/connection.hpp
@@ -124,7 +124,7 @@
         using FunctionTupleType =
             typename utility::decay_tuple<FunctionTuple>::type;
         constexpr bool returnWithMsg = []() {
-            if constexpr (std::tuple_size_v<FunctionTupleType>> 1)
+            if constexpr (std::tuple_size_v<FunctionTupleType> > 1)
             {
                 return std::is_same_v<
                     std::tuple_element_t<1, FunctionTupleType>,
diff --git a/sdbusplus/bus.hpp b/sdbusplus/bus.hpp
index 8bdabf2..c0d57f4 100644
--- a/sdbusplus/bus.hpp
+++ b/sdbusplus/bus.hpp
@@ -99,7 +99,7 @@
         ptrs.push_back(nullptr);
     }
 
-    explicit operator char**()
+    explicit operator char* *()
     {
         return const_cast<char**>(&ptrs.front());
     }
diff --git a/sdbusplus/message/native_types.hpp b/sdbusplus/message/native_types.hpp
index cbbc6a5..c44d2f8 100644
--- a/sdbusplus/message/native_types.hpp
+++ b/sdbusplus/message/native_types.hpp
@@ -32,7 +32,7 @@
     {
     }
 
-    operator const std::string&() const volatile&
+    operator const std::string &() const volatile&
     {
         return const_cast<const string_wrapper<T>*>(this)->str;
     }