From 3a31b2794c1eca4b3d7b40aa513376010aa8f51b Mon Sep 17 00:00:00 2001 From: Brett Date: Tue, 3 Sep 2024 22:38:45 -0400 Subject: [PATCH] s --- include/blt/gp/fwdecl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/blt/gp/fwdecl.h b/include/blt/gp/fwdecl.h index 2169194..0a42f5c 100644 --- a/include/blt/gp/fwdecl.h +++ b/include/blt/gp/fwdecl.h @@ -94,7 +94,7 @@ namespace blt::gp { #ifdef BLT_TRACK_ALLOCATIONS tracker.allocate(bytes); - std::cout << "Hey our aligned allocator allocated " << bytes << " bytes!\n"; +// std::cout << "Hey our aligned allocator allocated " << bytes << " bytes!\n"; #endif return std::aligned_alloc(8, bytes); } @@ -105,7 +105,7 @@ namespace blt::gp return; #ifdef BLT_TRACK_ALLOCATIONS tracker.deallocate(bytes); - std::cout << "[Hey our aligned allocator deallocated " << bytes << " bytes!]\n"; +// std::cout << "[Hey our aligned allocator deallocated " << bytes << " bytes!]\n"; #else (void) bytes; #endif