diff options
| author | 2021-10-04 17:07:51 +0100 | |
|---|---|---|
| committer | 2021-10-04 17:39:05 +0100 | |
| commit | dec5875aca7a2e0c281388db2f25d195ad9b2a3d (patch) | |
| tree | 0f8f741801677daa23e7f399282b64ecde137ad0 /src/modules/m_repeat.cpp | |
| parent | Mark all message tag provider classes as final. (diff) | |
Apply the final keyword to all module classes where appropriate.
Diffstat (limited to 'src/modules/m_repeat.cpp')
| -rw-r--r-- | src/modules/m_repeat.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_repeat.cpp b/src/modules/m_repeat.cpp index f36894249..f88f2552b 100644 --- a/src/modules/m_repeat.cpp +++ b/src/modules/m_repeat.cpp @@ -69,7 +69,7 @@ class RepeatMode final : public ParamMode<RepeatMode, SimpleExtItem<ChannelSettings>> { private: - struct RepeatItem + struct RepeatItem final { time_t ts; std::string line; @@ -78,13 +78,13 @@ class RepeatMode final typedef std::deque<RepeatItem> RepeatItemList; - struct MemberInfo + struct MemberInfo final { RepeatItemList ItemList; unsigned int Counter = 0; }; - struct ModuleSettings + struct ModuleSettings final { unsigned long MaxLines = 0; unsigned long MaxSecs = 0; |
