다음을 통해 공유


경고 C26471

reinterpret_cast를 사용하지 마십시오. 사용할 수 static_cast 있는 void* 캐스트(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++ 핵심 지침 유형.1