mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 22:30:31 +00:00
LibCore: Avoid unnecessary Vector copy in Account ctor
This commit is contained in:
parent
d224610ecf
commit
7d40a4a4e7
Notes:
sideshowbarker
2024-07-18 18:43:28 +09:00
Author: https://github.com/linusg
Commit: 7d40a4a4e7
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ Account::Account(const passwd& pwd, const spwd& spwd, Vector<gid_t> extra_gids)
|
|||
, m_gecos(pwd.pw_gecos)
|
||||
, m_home_directory(pwd.pw_dir)
|
||||
, m_shell(pwd.pw_shell)
|
||||
, m_extra_gids(extra_gids)
|
||||
, m_extra_gids(move(extra_gids))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue