diff options
| author | 2021-03-02 05:39:12 +0000 | |
|---|---|---|
| committer | 2021-03-02 05:56:56 +0000 | |
| commit | 4e488cb54d72fb4a1caa580f6756a6f4687beaf6 (patch) | |
| tree | ae74c5dc12685a23ede19a299753aed30c336960 /src/modules/m_spanningtree/utils.h | |
| parent | Move aligned_storage to the utility directory and clean up. (diff) | |
Refactor classbase/CullResult into Cullable/Cullable::Result.
Diffstat (limited to 'src/modules/m_spanningtree/utils.h')
| -rw-r--r-- | src/modules/m_spanningtree/utils.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_spanningtree/utils.h b/src/modules/m_spanningtree/utils.h index 7bf9c4be1..2782330d5 100644 --- a/src/modules/m_spanningtree/utils.h +++ b/src/modules/m_spanningtree/utils.h @@ -45,7 +45,7 @@ typedef std::unordered_map<std::string, TreeServer*, irc::insensitive, irc::StrH /** Contains helper functions and variables for this module, * and keeps them out of the global namespace */ -class SpanningTreeUtilities : public classbase +class SpanningTreeUtilities : public Cullable { CacheRefreshTimer RefreshTimer; @@ -112,7 +112,6 @@ class SpanningTreeUtilities : public classbase * valgrind warning in TimerManager on unload */ unsigned int PingFreq = 60; - /** Initialise utility class */ @@ -120,7 +119,7 @@ class SpanningTreeUtilities : public classbase /** Prepare for class destruction */ - CullResult cull() override; + Cullable::Result Cull() override; /** Destroy class and free listeners etc */ |
