Erreur du compilateur C2134
'function' : l’appel n’entraîne pas d’expression constante
Une fonction déclarée en tant que constexpr ne peut appeler que d’autres fonctions déclarées comme constexpr.
L’exemple suivant génère l’erreur C2134 :
// C2134.cpp
// compile with: /c
int A() {
return 42;
};
constexpr int B() {
return A(); // Error C2134: 'A': call does not result in a constant expression.
}
Résolution possible :
// C2134b.cpp
constexpr int A() { // add constexpr to A, since it meets the requirements of constexpr.
return 42;
};
constexpr int B() {
return A(); // No error
}