警告 C26490

不使用 reinterpret_cast

另请参阅

C++ Core Guidelines Type.1

示例

void function(void* ptr)
{
    std::size_t val = reinterpret_cast<std::size_t>(ptr); // C26490, Don't use reinterpret_cast
}