aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3_batch.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-11-28 21:42:52 +0000
committerGravatar Sadie Powell2021-11-28 21:45:50 +0000
commit35c6ac48c93e7e40a2152bac8ec74b4ef13607a1 (patch)
tree9305852c063b4302f67772ee64668489e535ba7c /src/modules/m_ircv3_batch.cpp
parentAdd a snomask flag for rehash messages. (diff)
Fix a bunch of cases where module types were not marked as final.
Diffstat (limited to 'src/modules/m_ircv3_batch.cpp')
-rw-r--r--src/modules/m_ircv3_batch.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/modules/m_ircv3_batch.cpp b/src/modules/m_ircv3_batch.cpp
index 4914dafba..74ce55098 100644
--- a/src/modules/m_ircv3_batch.cpp
+++ b/src/modules/m_ircv3_batch.cpp
@@ -39,7 +39,7 @@ class BatchMessage final
/** Extra structure allocated only for running batches, containing objects only relevant for
* that specific run of the batch.
*/
-struct IRCv3::Batch::BatchInfo
+struct IRCv3::Batch::BatchInfo final
{
/** List of users that have received the batch start message
*/
@@ -58,7 +58,8 @@ struct IRCv3::Batch::BatchInfo
}
};
-class IRCv3::Batch::ManagerImpl final : public Manager
+class IRCv3::Batch::ManagerImpl final
+ : public Manager
{
typedef std::vector<Batch*> BatchList;