Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 275 Bytes

opt-show-all-implicit-casts.md

File metadata and controls

25 lines (18 loc) · 275 Bytes

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;
}