diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-07-09 15:00:31 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-07-09 15:00:31 +0200 |
commit | 3a67168036e1d8e0406c66c3ccf37812228a9524 (patch) | |
tree | 2e891624fb5eeca40fd546e6fb32c5ca286cf7c4 /include | |
parent | 93786820aad505e00d5c1c07228ef7aa6c3f22b8 (diff) |
core_whowas Delete elements of the per nick deque in the destructor of WhoWas::Nick
Diffstat (limited to 'include')
-rw-r--r-- | include/commands/cmd_whowas.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/commands/cmd_whowas.h b/include/commands/cmd_whowas.h index b058ef37d..2a3fa896c 100644 --- a/include/commands/cmd_whowas.h +++ b/include/commands/cmd_whowas.h @@ -39,6 +39,10 @@ namespace WhoWas /** Container where each element has information about one occurrence of this nick */ whowas_set entries; + + /** Destructor, deallocates all elements in the entries container + */ + ~Nick(); }; } |