Condividi tramite


Avviso C26471

Non utilizzare reinterpret_cast. Un cast da void* può usare static_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
    }
}

Vedi anche

C++ Core Guidelines Type.1