diff options
| author | 2023-07-05 13:35:14 +0100 | |
|---|---|---|
| committer | 2023-07-05 13:35:14 +0100 | |
| commit | ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7 (patch) | |
| tree | 8661da2994ae709062c8fd2555b1a1361786168b /src/cull.cpp | |
| parent | Avoid iterator invalidation issues in ActionList::Run. (diff) | |
| download | inspircd++-ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7.tar.gz inspircd++-ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7.tar.bz2 inspircd++-ddd96f65a20fdbb43ba6ad66f392f4a5b0326eb7.zip | |
Fix an indentation issue in CullList::Apply.
Diffstat (limited to 'src/cull.cpp')
| -rw-r--r-- | src/cull.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cull.cpp b/src/cull.cpp index b2cf536a5..d8b645dc2 100644 --- a/src/cull.cpp +++ b/src/cull.cpp @@ -111,8 +111,8 @@ void CullList::Apply() for (auto* c : culled) { #ifdef INSPIRCD_ENABLE_RTTI - ServerInstance->Logs.Debug("CULLLIST", "Deleting {} @{}", typeid(*c).name(), - fmt::ptr(c)); + ServerInstance->Logs.Debug("CULLLIST", "Deleting {} @{}", typeid(*c).name(), + fmt::ptr(c)); #endif delete c; } |
