clang-format-11: reformat

The .clang-format file here is an old version of the common one.
Upgrade to the latest and reformat.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I0d532aa88d650e9c7664e07abfc8c4fdf0dd3df4
diff --git a/users.hpp b/users.hpp
index a13825b..6ff4dfb 100644
--- a/users.hpp
+++ b/users.hpp
@@ -16,8 +16,8 @@
 #pragma once
 #include <sdbusplus/bus.hpp>
 #include <sdbusplus/server/object.hpp>
-#include <xyz/openbmc_project/User/Attributes/server.hpp>
 #include <xyz/openbmc_project/Object/Delete/server.hpp>
+#include <xyz/openbmc_project/User/Attributes/server.hpp>
 
 namespace phosphor
 {
@@ -41,10 +41,10 @@
   public:
     Users() = delete;
     ~Users() = default;
-    Users(const Users &) = delete;
-    Users &operator=(const Users &) = delete;
-    Users(Users &&) = delete;
-    Users &operator=(Users &&) = delete;
+    Users(const Users&) = delete;
+    Users& operator=(const Users&) = delete;
+    Users(Users&&) = delete;
+    Users& operator=(Users&&) = delete;
 
     /** @brief Constructs UserMgr object.
      *
@@ -55,9 +55,9 @@
      *  @param[in] enabled - user enabled state
      *  @param[in] parent - user manager - parent object
      */
-    Users(sdbusplus::bus::bus &bus, const char *path,
+    Users(sdbusplus::bus::bus& bus, const char* path,
           std::vector<std::string> groups, std::string priv, bool enabled,
-          UserMgr &parent);
+          UserMgr& parent);
 
     /** @brief delete user method.
      *  This method deletes the user as requested
@@ -117,7 +117,7 @@
 
   private:
     std::string userName;
-    UserMgr &manager;
+    UserMgr& manager;
 };
 
 } // namespace user