Avviso C26471
Non utilizzare
reinterpret_cast
. Un cast davoid*
può usarestatic_cast
(tipo.1)
Osservazioni:
Nome dell'analisi del codice: NO_REINTERPRET_CAST_FROM_VOID_PTR
Esempio
void function(void* pValue)
{
{
int* pointerToInt = reinterpret_cast<int*>(pValue); // C26471, use static_cast instead
}
{
int* pointerToInt = static_cast<int*>(pValue); // Good
}
}