Miscellaneous-NoConstCastsΒΆ

Do not use const_cast

Required inputs: IR

Const casts should be used only for interoperability with 3rd-party code that is not const-correct. In other cases, changing the code for const-correctness should be preferred over the use of const_cast.

Possible Messages

Key

Text

Severity

Disabled

const_cast

Use of const_cast.

None

False

Options