From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- core/resource/binfile.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/resource/binfile.cc') diff --git a/core/resource/binfile.cc b/core/resource/binfile.cc index e17db50..b8e3db8 100644 --- a/core/resource/binfile.cc +++ b/core/resource/binfile.cc @@ -39,7 +39,8 @@ void resource::hard_cleanup(void) for(const auto& it : resource_map) { if(it.second.use_count() > 1L) { spdlog::warn("resource: zombie resource [BinFile] {} [use_count={}]", it.first, it.second.use_count()); - } else { + } + else { spdlog::debug("resource: releasing [BinFile] {}", it.first); } -- cgit