diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-09 15:21:39 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-09 15:21:39 +0200 |
commit | e3bcb9b9054ad5b488365b80896634fe6cf105c0 (patch) | |
tree | c5da4223b22c11be49d1b663f83448cfdabe23f5 /include/commands/cmd_whowas.h | |
parent | cf2fd595e08ff181f062bb238aea646ed719d946 (diff) |
core_whowas Rename misleading variables and typedefs
Diffstat (limited to 'include/commands/cmd_whowas.h')
-rw-r--r-- | include/commands/cmd_whowas.h | 10 |
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 */ |