diff --git a/Userland/Libraries/LibCore/Account.h b/Userland/Libraries/LibCore/Account.h index 5cbd7253ec..36eef9dbd5 100644 --- a/Userland/Libraries/LibCore/Account.h +++ b/Userland/Libraries/LibCore/Account.h @@ -32,6 +32,8 @@ public: PasswdOnly }; + // FIXME: Convert the methods below to take StringViews instead. + static ErrorOr self(Read options = Read::All); static ErrorOr from_name(char const* username, Read options = Read::All); static ErrorOr from_uid(uid_t uid, Read options = Read::All);