From fe9cd9a6efcb4636172bea5940da5071c7ecf1e7 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Mon, 4 Mar 2024 11:33:04 -0500 Subject: [PATCH] remove debug message --- include/blt/std/allocator.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/blt/std/allocator.h b/include/blt/std/allocator.h index e4df35f..0852f00 100644 --- a/include/blt/std/allocator.h +++ b/include/blt/std/allocator.h @@ -499,7 +499,6 @@ namespace blt return; std::iter_swap(blocks.begin() + remove_index, blocks.end() - 1); allocator.deallocate(blocks.back().buffer, size_); - BLT_DEBUG("I have freed a block!"); blocks.pop_back(); }