diff options
| author | 2026-03-02 21:31:04 +0000 | |
|---|---|---|
| committer | 2026-03-02 21:31:04 +0000 | |
| commit | 6a2d85ae07564b7f096941b7f7e12c15f5465d61 (patch) | |
| tree | 619fb2f5424c2ac2941463b0222beffc23122e20 /src/base.cpp | |
| parent | Disable 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.cpp | 4 |
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); } } |
