Condividi tramite


Avviso C26496

La variabile 'variable' viene assegnata una sola volta, contrassegnarla come const.

Vedi anche

Linee guida di base di C++con.4.

Esempio

int GetTheNumber();
int GiveMeTheNumber(int);

void function1()
{
    int theNumber = GetTheNumber(); // C26496, 'theNumber' is never assigned to again, so it can be marked as const
    std::cout << theNumber << '\n';

    GiveMeTheNumber(theNumber);
    // ...
}