summaryrefslogtreecommitdiff
path: root/include/commands/cmd_whowas.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/commands/cmd_whowas.h')
-rw-r--r--include/commands/cmd_whowas.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/commands/cmd_whowas.h b/include/commands/cmd_whowas.h
index 8e1a8059d..798c48ee5 100644
--- a/include/commands/cmd_whowas.h
+++ b/include/commands/cmd_whowas.h
@@ -26,19 +26,19 @@
/* Forward ref for typedefs */
class WhoWasGroup;
-/** A group of users related by nickname
- */
-typedef std::deque<WhoWasGroup*> whowas_set;
-
namespace WhoWas
{
/** Everything known about one nick
*/
struct Nick : public intrusive_list_node<Nick>
{
+ /** A group of users related by nickname
+ */
+ typedef std::deque<WhoWasGroup*> List;
+
/** Container where each element has information about one occurrence of this nick
*/
- whowas_set entries;
+ List entries;
/** Time this nick was added to the database
*/