Avviso C26493
Non usare cast in stile C.
Vedi anche
Tipo di linee guida di base C++.4.
Esempio
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
}