From be87d291287f283b5a63878385c4098618d87bc3 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 4 Sep 2024 16:16:56 -0400 Subject: [PATCH] get rid of alloc message --- CMakeLists.txt | 2 +- include/blt/gp/fwdecl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bbb9149..31606b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(blt-gp VERSION 0.1.48) +project(blt-gp VERSION 0.1.49) include(CTest) diff --git a/include/blt/gp/fwdecl.h b/include/blt/gp/fwdecl.h index 20c71fa..1a75b90 100644 --- a/include/blt/gp/fwdecl.h +++ b/include/blt/gp/fwdecl.h @@ -241,7 +241,7 @@ namespace blt::gp void push_block(blt::size_t bytes) { auto blk = allocate_block(bytes); - BLT_TRACE("Allocated block %p", blk); +// BLT_TRACE("Allocated block %p", blk); blk->metadata.next = head; head = blk; }