diff options
author | Sadie Powell <sadie@witchery.services> | 2023-03-06 16:11:54 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-03-13 13:52:56 +0000 |
commit | 29db25dac7aff36b4f7239a9fabd57230534cf35 (patch) | |
tree | 9cc80ab7134514381f02835629ade620584020d0 /modules/commands/cs_log.cpp | |
parent | d210cd26952a4d4441223809dc259fcf6eaff5fd (diff) |
Fix missing override keywords.
Diffstat (limited to 'modules/commands/cs_log.cpp')
-rw-r--r-- | modules/commands/cs_log.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_log.cpp b/modules/commands/cs_log.cpp index 59f164b6d..51f3ab8fe 100644 --- a/modules/commands/cs_log.cpp +++ b/modules/commands/cs_log.cpp @@ -18,7 +18,7 @@ struct LogSettingImpl : LogSetting, Serializable { } - ~LogSettingImpl() + ~LogSettingImpl() override { ChannelInfo *ci = ChannelInfo::Find(chan); if (ci) @@ -81,7 +81,7 @@ struct LogSettingsImpl : LogSettings { LogSettingsImpl(Extensible *) { } - ~LogSettingsImpl() + ~LogSettingsImpl() override { for (iterator it = (*this)->begin(); it != (*this)->end();) { |