This is a new checker for clang-tidy.
This checker will warn when there is a explicit redundant cast of a calculation
result to a bigger type. If the intention of the cast is to avoid loss of
precision then the cast is misplaced, and there can be loss of precision.
Otherwise the cast is ineffective.
No warning is written when it is seen that the cast is ineffective.
I tested this on debian projects.. and I see quite little noise. in 1212 projects I got 76 warnings. The cast is either ineffective or there is loss of precision in all these cases. I don't see warnings where I think the warning is wrong. But I don't want to warn when it can be determined that the cast is just ineffective, I think that the perfect checker would be better at determining this.
The documentation describes this check as one that looks for a cast to a "bigger type", but the name of the check implies that it only works for casts to long.
The name of the check should be made more generic to reflect reality.
Perhaps misc-redundant-cast-to-larger-type or misc-redundant-bigger-type-cast?