summaryrefslogtreecommitdiff
path: root/include/commands/cmd_whowas.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-08-30 10:35:21 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-08-30 10:35:21 +0200
commit84ae29d0eadb5baa7ad4f517c3ce62995205d2f5 (patch)
tree49e211e34bf1dbbe18965da43c027dcbd64d9aa9 /include/commands/cmd_whowas.h
parent8fc268558586584479c622a3852f647eaf3a9b0e (diff)
Move the intrusive list containers into the insp namespace
Diffstat (limited to 'include/commands/cmd_whowas.h')
-rw-r--r--include/commands/cmd_whowas.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/commands/cmd_whowas.h b/include/commands/cmd_whowas.h
index d443f172b..cd2101e9f 100644
--- a/include/commands/cmd_whowas.h
+++ b/include/commands/cmd_whowas.h
@@ -60,7 +60,7 @@ namespace WhoWas
/** Everything known about one nick
*/
- struct Nick : public intrusive_list_node<Nick>
+ struct Nick : public insp::intrusive_list_node<Nick>
{
/** A group of users related by nickname
*/
@@ -142,7 +142,7 @@ namespace WhoWas
private:
/** Order in which the users were added into the map, used to remove oldest nick
*/
- typedef intrusive_list_tail<Nick> FIFO;
+ typedef insp::intrusive_list_tail<Nick> FIFO;
/** Sets of users in the whowas system
*/