Removed a commented out debugging printf

This commit is contained in:
AnnaSnoeijs 2025-08-15 18:00:24 +02:00
parent fd7cb064e2
commit 4b76bd6265

View file

@ -45,7 +45,6 @@ static void updateTotal( wincount_t *count ){
// popcount for a column
static winint_t popcnt_column( column_t column ){
winint_t i = (winint_t)__builtin_popcountg( (uint64_t)column );
//if( i > 32 ) printf( "%d %lb", i, column ); // TODO: REMOVE
return i;
}