diff options
| author | 2026-04-04 12:10:50 +0100 | |
|---|---|---|
| committer | 2026-04-04 12:32:00 +0100 | |
| commit | ef7c6fe9e2bfb22de66808e56a5f5bd602c3086f (patch) | |
| tree | 96f67982d63c354a33295997c828fb79462120e6 /src/users.cpp | |
| parent | Rename utility/map to container and prefix the difference method. (diff) | |
| download | inspircd++-ef7c6fe9e2bfb22de66808e56a5f5bd602c3086f.tar.gz inspircd++-ef7c6fe9e2bfb22de66808e56a5f5bd602c3086f.tar.bz2 inspircd++-ef7c6fe9e2bfb22de66808e56a5f5bd602c3086f.zip | |
Remove the remaining bits of stdalgo to utility/container.
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 2cc0791da..47a0b82e0 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -31,6 +31,7 @@ #include "inspircd.h" #include "clientprotocolevent.h" #include "modules/hash.h" +#include "utility/container.h" #include "utility/string.h" #include "xline.h" @@ -309,7 +310,7 @@ void User::OperLogout() SetMode(opermh, false); } - stdalgo::vector::swaperase(ServerInstance->Users.all_opers, this); + insp::swap_erase(ServerInstance->Users.all_opers, this); FOREACH_MOD(OnPostOperLogout, (this, account)); } |
