警告 C26471
reinterpret_cast
を使用しないでください。void*
からのキャストでは、static_cast
(type.1) を使用できます
解説
コード分析名: NO_REINTERPRET_CAST_FROM_VOID_PTR
例
void function(void* pValue)
{
{
int* pointerToInt = reinterpret_cast<int*>(pValue); // C26471, use static_cast instead
}
{
int* pointerToInt = static_cast<int*>(pValue); // Good
}
}