Errore del compilatore C2134
'function': la chiamata non genera un'espressione costante
Una funzione dichiarata come constexpr può chiamare solo altre funzioni dichiarate come constexpr.
L'esempio seguente genera l'errore 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.
}
Possibile soluzione:
// 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
}