aboutsummaryrefslogtreecommitdiffstats
path: root/src/base.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-02 21:31:04 +0000
committerGravatar Sadie Powell2026-03-02 21:31:04 +0000
commit6a2d85ae07564b7f096941b7f7e12c15f5465d61 (patch)
tree619fb2f5424c2ac2941463b0222beffc23122e20 /src/base.cpp
parentDisable service registration messages when not using a debug build. (diff)
Abolish FMT_PTR, this does the same for both formatters.
Diffstat (limited to 'src/base.cpp')
-rw-r--r--src/base.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base.cpp b/src/base.cpp
index bb8c8db55..e2972766c 100644
--- a/src/base.cpp
+++ b/src/base.cpp
@@ -51,7 +51,7 @@ refcountbase::~refcountbase()
if (refcount && ServerInstance)
{
ServerInstance->Logs.Debug("CULL", "refcountbase::~ @{} with refcount {}",
- FMT_PTR(this), refcount);
+ (void*)this, refcount);
}
}
@@ -60,6 +60,6 @@ usecountbase::~usecountbase()
if (usecount && ServerInstance)
{
ServerInstance->Logs.Debug("CULL", "usecountbase::~ @{} with refcount {}",
- FMT_PTR(this), usecount);
+ (void*)this, usecount);
}
}