Avertissement C26496
La variable 'variable' n’est affectée qu’une seule fois, marquez-la comme
const
.
Voir aussi
Exemple
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);
// ...
}