in reply to Re^2: using hashes to count
in thread using hashes to count

++, -- (both pre and postfix versions), -= and += are exempt from that warning precisely because of this common use:

perl -Mstrict -w -e'my $f; $f++; print "$f\n"'
prints (only)
1