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; }