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