次の方法で共有


警告 C26493

C スタイルのキャストを使用しないでください。

関連項目

C++ Core Guidelines Type.4

void function(const int* const_i)
{
    int* nonconst_i = (int*)const_i; // C26493 Don't use C-style casts
    int i = (int)*const_i; // C26493 Don't use C-style casts
}