From 7e7e542f51f75dbca6eb86f01abf8c5a2164f706 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Fri, 8 Mar 2024 16:56:50 -0500 Subject: [PATCH] forgot to make free --- CMakeLists.txt | 2 +- include/blt/std/allocator.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 13a4799..d3faf98 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5) include(cmake/color.cmake) -set(BLT_VERSION 0.14.6) +set(BLT_VERSION 0.14.7) set(BLT_TEST_VERSION 0.0.1) set(BLT_TARGET BLT) diff --git a/include/blt/std/allocator.h b/include/blt/std/allocator.h index 2bde389..f7c51b3 100644 --- a/include/blt/std/allocator.h +++ b/include/blt/std/allocator.h @@ -762,7 +762,7 @@ namespace blt if (blk->metadata.prev != nullptr) blk->metadata.prev->metadata.next = blk->metadata.next; - //del(blk); + del(blk); } }