Upozornění C26493
Nepoužívejte přetypování ve stylu jazyka C.
Viz také
Příklad
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
}