警告 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
}
}