diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-08-30 10:35:21 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-08-30 10:35:21 +0200 |
commit | 84ae29d0eadb5baa7ad4f517c3ce62995205d2f5 (patch) | |
tree | 49e211e34bf1dbbe18965da43c027dcbd64d9aa9 /include/users.h | |
parent | 8fc268558586584479c622a3852f647eaf3a9b0e (diff) |
Move the intrusive list containers into the insp namespace
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/users.h b/include/users.h index 8c89a0b16..ceee4396b 100644 --- a/include/users.h +++ b/include/users.h @@ -250,7 +250,7 @@ class CoreExport User : public Extensible public: /** List of Memberships for this user */ - typedef intrusive_list<Membership> ChanList; + typedef insp::intrusive_list<Membership> ChanList; /** Hostname of connection. * This should be valid as per RFC1035. @@ -625,7 +625,7 @@ class CoreExport UserIOHandler : public StreamSocket typedef unsigned int already_sent_t; -class CoreExport LocalUser : public User, public InviteBase<LocalUser>, public intrusive_list_node<LocalUser> +class CoreExport LocalUser : public User, public InviteBase<LocalUser>, public insp::intrusive_list_node<LocalUser> { public: LocalUser(int fd, irc::sockets::sockaddrs* client, irc::sockets::sockaddrs* server); |