diff options
author | MacDue <macdue@dueutil.tech> | 2023-02-05 19:02:54 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-02-08 19:15:45 +0000 |
commit | 63b11030f03e5a0fd06d9c8cfa788da0388096d8 (patch) | |
tree | 3ea0fa1e751683b643c71da95b6ecf98a97508cf /Kernel/Credentials.h | |
parent | 1c92e6ee9d1f686f20f37445150d63ae474b7e9b (diff) | |
download | serenity-63b11030f03e5a0fd06d9c8cfa788da0388096d8.zip |
Everywhere: Use ReadonlySpan<T> instead of Span<T const>
Diffstat (limited to 'Kernel/Credentials.h')
-rw-r--r-- | Kernel/Credentials.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Credentials.h b/Kernel/Credentials.h index 25e002a25e..cc6b88052d 100644 --- a/Kernel/Credentials.h +++ b/Kernel/Credentials.h @@ -14,7 +14,7 @@ namespace Kernel { class Credentials final : public AtomicRefCounted<Credentials> { public: - static ErrorOr<NonnullRefPtr<Credentials>> create(UserID uid, GroupID gid, UserID euid, GroupID egid, UserID suid, GroupID sgid, Span<GroupID const> extra_gids, SessionID sid, ProcessGroupID pgid); + static ErrorOr<NonnullRefPtr<Credentials>> create(UserID uid, GroupID gid, UserID euid, GroupID egid, UserID suid, GroupID sgid, ReadonlySpan<GroupID> extra_gids, SessionID sid, ProcessGroupID pgid); ~Credentials(); bool is_superuser() const { return euid() == 0; } @@ -25,7 +25,7 @@ public: GroupID gid() const { return m_gid; } UserID suid() const { return m_suid; } GroupID sgid() const { return m_sgid; } - Span<GroupID const> extra_gids() const { return m_extra_gids.span(); } + ReadonlySpan<GroupID> extra_gids() const { return m_extra_gids.span(); } SessionID sid() const { return m_sid; }; ProcessGroupID pgid() const { return m_pgid; } |