Warnung C26814
Die konstante Variable 'Variable' kann zur Kompilierungszeit berechnet werden. Erwägen Sie die Verwendung
constexpr
(Con.5)
Hinweise
Wird für Konstanten verwendet constexpr
, deren Wert zur Kompilierungszeit bekannt ist. (Con.5)
Codeanalysename: USE_CONSTEXPR_RATHER_THAN_CONST
Beispiel
const int foo = 1234; // C26814 reported here.
constexpr int getMagicNumber()
{
return 42;
}
void bar()
{
const int myval = 3; // C26814 reported here
const int magicNumber = getMagicNumber(); // C26814 reported here.
}
Siehe auch
Con.5 Use constexpr for all variables that can be computed at compile time