get rid of alloc message

pages
Brett 2024-09-04 16:16:56 -04:00
parent a19712a4d7
commit be87d29128
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

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