diff options
| author | 2026-04-04 12:10:50 +0100 | |
|---|---|---|
| committer | 2026-04-04 12:32:00 +0100 | |
| commit | ef7c6fe9e2bfb22de66808e56a5f5bd602c3086f (patch) | |
| tree | 96f67982d63c354a33295997c828fb79462120e6 /modules/kicknorejoin.cpp | |
| parent | Rename utility/map to container and prefix the difference method. (diff) | |
Remove the remaining bits of stdalgo to utility/container.
Diffstat (limited to 'modules/kicknorejoin.cpp')
| -rw-r--r-- | modules/kicknorejoin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/kicknorejoin.cpp b/modules/kicknorejoin.cpp index b2a7ca455..739c3d374 100644 --- a/modules/kicknorejoin.cpp +++ b/modules/kicknorejoin.cpp @@ -29,6 +29,7 @@ #include "modules/invite.h" #include "numerichelper.h" #include "timeutils.h" +#include "utility/container.h" class KickRejoinData final { @@ -70,7 +71,7 @@ public: else { // Expired record, remove. - stdalgo::vector::swaperase(kicked, i); + insp::swap_erase(kicked, i); if (kicked.empty()) break; } |
