Warnung C26492

Verwenden const_cast Sie nicht, um wegzukehren const.

Siehe auch

C++ Core Guidelines Type.3.

Beispiel

void function(const int* constIntPtr)
{
    int* intPtr = const_cast<int*>(constIntPtr); // C26492, Do not use const_cast to cast away const
}