aboutsummaryrefslogtreecommitdiff
path: root/src/base.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-06-24 12:15:03 +0200
committerGravatar Attila Molnar2014-06-24 12:15:03 +0200
commite66ea395e424983cb30c11e4050020f8e6f482e1 (patch)
tree4d2107c1fffe6067d267b1b4a56d875bb665f42a /src/base.cpp
parentChange allocation of InspIRCd::Modes to be physically part of the object cont... (diff)
Change allocation of InspIRCd::Logs to be physically part of the object containing it using fakederef
Diffstat (limited to 'src/base.cpp')
-rw-r--r--src/base.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/base.cpp b/src/base.cpp
index dc57a8434..c131f4dae 100644
--- a/src/base.cpp
+++ b/src/base.cpp
@@ -27,13 +27,13 @@
classbase::classbase()
{
- if (ServerInstance && ServerInstance->Logs)
+ if (ServerInstance)
ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::+ @%p", (void*)this);
}
CullResult classbase::cull()
{
- if (ServerInstance && ServerInstance->Logs)
+ if (ServerInstance)
ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::-%s @%p",
typeid(*this).name(), (void*)this);
return CullResult();
@@ -41,7 +41,7 @@ CullResult classbase::cull()
classbase::~classbase()
{
- if (ServerInstance && ServerInstance->Logs)
+ if (ServerInstance)
ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "classbase::~ @%p", (void*)this);
}
@@ -73,14 +73,14 @@ refcountbase::refcountbase() : refcount(0)
refcountbase::~refcountbase()
{
- if (refcount && ServerInstance && ServerInstance->Logs)
+ if (refcount && ServerInstance)
ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "refcountbase::~ @%p with refcount %d",
(void*)this, refcount);
}
usecountbase::~usecountbase()
{
- if (usecount && ServerInstance && ServerInstance->Logs)
+ if (usecount && ServerInstance)
ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "usecountbase::~ @%p with refcount %d",
(void*)this, usecount);
}
@@ -197,7 +197,7 @@ void Extensible::FreeAllExtItems()
Extensible::~Extensible()
{
- if ((!extensions.empty() || !culled) && ServerInstance && ServerInstance->Logs)
+ if ((!extensions.empty() || !culled) && ServerInstance)
ServerInstance->Logs->Log("CULLLIST", LOG_DEBUG, "Extensible destructor called without cull @%p", (void*)this);
}