aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_ident.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-03-02 05:39:12 +0000
committerGravatar Sadie Powell2021-03-02 05:56:56 +0000
commit4e488cb54d72fb4a1caa580f6756a6f4687beaf6 (patch)
treeae74c5dc12685a23ede19a299753aed30c336960 /src/modules/m_ident.cpp
parentMove aligned_storage to the utility directory and clean up. (diff)
downloadinspircd++-4e488cb54d72fb4a1caa580f6756a6f4687beaf6.tar.gz
inspircd++-4e488cb54d72fb4a1caa580f6756a6f4687beaf6.tar.bz2
inspircd++-4e488cb54d72fb4a1caa580f6756a6f4687beaf6.zip
Refactor classbase/CullResult into Cullable/Cullable::Result.
Diffstat (limited to 'src/modules/m_ident.cpp')
-rw-r--r--src/modules/m_ident.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp
index 4275ac0ca..d50b19318 100644
--- a/src/modules/m_ident.cpp
+++ b/src/modules/m_ident.cpp
@@ -264,10 +264,10 @@ class IdentRequestSocket : public EventHandler
done = true;
}
- CullResult cull() override
+ Cullable::Result Cull() override
{
Close();
- return EventHandler::cull();
+ return EventHandler::Cull();
}
};