aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_hostcycle.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-10-29 17:38:58 +0100
committerGravatar Sadie Powell2022-10-29 17:38:58 +0100
commit561fe0fe64fb2b152618732613d328d2966d5b65 (patch)
treeef9951634a656941525e49f4bf29a0a53ccf4942 /src/modules/m_hostcycle.cpp
parentMove xline-related typedefs from typedefs to the xline header. (diff)
Clean up the typedefs for OnBuildNeighborList.
Diffstat (limited to 'src/modules/m_hostcycle.cpp')
-rw-r--r--src/modules/m_hostcycle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_hostcycle.cpp b/src/modules/m_hostcycle.cpp
index 74ced39da..4ce91034a 100644
--- a/src/modules/m_hostcycle.cpp
+++ b/src/modules/m_hostcycle.cpp
@@ -40,8 +40,8 @@ class ModuleHostCycle final
uint64_t silent_id = ServerInstance->Users.NextAlreadySentId();
uint64_t seen_id = ServerInstance->Users.NextAlreadySentId();
- IncludeChanList include_chans(user->chans.begin(), user->chans.end());
- std::map<User*,bool> exceptions;
+ User::NeighborList include_chans(user->chans.begin(), user->chans.end());
+ User::NeighborExceptions exceptions;
FOREACH_MOD(OnBuildNeighborList, (user, include_chans, exceptions));