Upozornění C26496
Proměnná "proměnná" je přiřazena pouze jednou, označte ji jako
const
.
Viz také
Příklad
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);
// ...
}