Nóta
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as shíniú isteach nó eolairí a athrú.
Teastaíonn údarú chun rochtain a fháil ar an leathanach seo. Is féidir leat triail a bhaint as eolairí a athrú.
'function' : call does not result in a constant expression
Remarks
A function declared as constexpr can only call other functions declared as constexpr.
Example
The following example generates 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.
}
Possible resolution:
// 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
}