show-all-implicit-casts {#show_all_implicit_casts} Show all implicit casts which can be noisy. Default: Off Examples: int main() { short s = 2; } transforms into this: int main() { short s = static_cast<short>(2); return 0; }