Uyarı C26471
reinterpret_cast
kullanmayın. 'denvoid*
atama kullanabilirstatic_cast
(tür.1)
Açıklamalar
Kod analizi adı: NO_REINTERPRET_CAST_FROM_VOID_PTR
Örnek
void function(void* pValue)
{
{
int* pointerToInt = reinterpret_cast<int*>(pValue); // C26471, use static_cast instead
}
{
int* pointerToInt = static_cast<int*>(pValue); // Good
}
}