경고 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
}
}