Condividi tramite


Avviso C26465

Non usare const_cast per allontanare const. const_cast non è obbligatorio; la constness o la volatilità non viene rimossa da questa conversione.

Vedi anche

Tipo di linee guida di base di C++.3

Esempio

void function(int* const constPtrToInt)
{
  auto p = const_cast<int*>(constPtrToInt); // C26465, const is not being removed
}