Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Don't use C-style casts.
See also
Example
void function(const int* const_i) { int* nonconst_i = (int*)const_i; // C26493 Don't use C-style casts int i = (int)*const_i; // C26493 Don't use C-style casts }