diff options
Diffstat (limited to 'include/commands')
-rw-r--r-- | include/commands/cmd_whowas.h | 4 |
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 */ |