Update to latest clang-format

Refer:https://github.com/openbmc/docs/blob/ac5d544553934f8083c61c5986a1420261bc8a4c/style/cpp/.clang-format

Signed-off-by: George Liu <liuxiwei@inspur.com>
Change-Id: I1e06864afc29ce7de463e62fa2a0eb6f70e8fd93
diff --git a/crypt_algo.hpp b/crypt_algo.hpp
index f4d7363..1064772 100644
--- a/crypt_algo.hpp
+++ b/crypt_algo.hpp
@@ -44,8 +44,7 @@
      * @brief Constructor for Interface
      */
     explicit Interface(const std::vector<uint8_t>& k2) : k2(k2)
-    {
-    }
+    {}
 
     Interface() = delete;
     virtual ~Interface() = default;
@@ -145,8 +144,7 @@
      * @param[in] - Session Integrity key
      */
     explicit AlgoAES128(const std::vector<uint8_t>& k2) : Interface(k2)
-    {
-    }
+    {}
 
     AlgoAES128() = delete;
     ~AlgoAES128() = default;