次の方法で共有


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

関連項目

C++ Core Guidelines Type.1