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.cpp b/users.cpp
index 1dbe85a..18b552a 100644
--- a/users.cpp
+++ b/users.cpp
@@ -14,18 +14,23 @@
// limitations under the License.
*/
-#include <filesystem>
-#include <unistd.h>
+#include "config.h"
+
+#include "users.hpp"
+
+#include "user_mgr.hpp"
+
#include <sys/types.h>
#include <sys/wait.h>
+#include <unistd.h>
+
+#include <phosphor-logging/elog-errors.hpp>
+#include <phosphor-logging/elog.hpp>
+#include <phosphor-logging/log.hpp>
#include <xyz/openbmc_project/Common/error.hpp>
#include <xyz/openbmc_project/User/Common/error.hpp>
-#include <phosphor-logging/log.hpp>
-#include <phosphor-logging/elog.hpp>
-#include <phosphor-logging/elog-errors.hpp>
-#include "user_mgr.hpp"
-#include "users.hpp"
-#include "config.h"
+
+#include <filesystem>
namespace phosphor
{
@@ -53,9 +58,9 @@
* @param[in] enabled - user enabled state
* @param[in] parent - user manager - parent object
*/
-Users::Users(sdbusplus::bus::bus &bus, const char *path,
+Users::Users(sdbusplus::bus::bus& bus, const char* path,
std::vector<std::string> groups, std::string priv, bool enabled,
- UserMgr &parent) :
+ UserMgr& parent) :
Interfaces(bus, path, true),
userName(std::filesystem::path(path).filename()), manager(parent)
{