aboutsummaryrefslogtreecommitdiffstats
path: root/src/extensible.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-08-22 10:26:43 +0100
committerGravatar Sadie Powell2024-08-22 11:12:52 +0100
commit6b123d4bc61c2db8e379dd5e681834c4053e661d (patch)
tree77621bb30f54b0c444e31a78b2c5c9a67955b723 /src/extensible.cpp
parentMerge branch 'insp4' into master. (diff)
Use C++20 <format> instead of fmtlib when available.
Diffstat (limited to 'src/extensible.cpp')
-rw-r--r--src/extensible.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extensible.cpp b/src/extensible.cpp
index d067feaf7..7ca2f382b 100644
--- a/src/extensible.cpp
+++ b/src/extensible.cpp
@@ -59,7 +59,7 @@ Extensible::~Extensible()
if ((!extensions.empty() || !culled) && ServerInstance)
{
ServerInstance->Logs.Debug("CULL", "Extensible was deleted without being culled: @{}",
- fmt::ptr(this));
+ FMT_PTR(this));
}
}