diff options
| author | 2022-10-29 17:38:58 +0100 | |
|---|---|---|
| committer | 2022-10-29 17:38:58 +0100 | |
| commit | 561fe0fe64fb2b152618732613d328d2966d5b65 (patch) | |
| tree | ef9951634a656941525e49f4bf29a0a53ccf4942 /src/modules/m_auditorium.cpp | |
| parent | Move xline-related typedefs from typedefs to the xline header. (diff) | |
Clean up the typedefs for OnBuildNeighborList.
Diffstat (limited to 'src/modules/m_auditorium.cpp')
| -rw-r--r-- | src/modules/m_auditorium.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index ba22e50c5..5be4f4ef1 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -158,9 +158,9 @@ public: BuildExcept(memb, excepts); } - void OnBuildNeighborList(User* source, IncludeChanList& include, std::map<User*, bool>& exception) override + void OnBuildNeighborList(User* source, User::NeighborList& include, User::NeighborExceptions& exception) override { - for (IncludeChanList::iterator i = include.begin(); i != include.end(); ) + for (User::NeighborList::iterator i = include.begin(); i != include.end(); ) { Membership* memb = *i; if (IsVisible(memb)) |
