컴파일러 오류 C2134
'function': 호출이 상수 식을 생성하지 않습니다.
constexpr로 선언된 함수는 constexpr로 선언된 다른 함수만 호출할 수 있습니다.
다음 샘플에서는 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.
}
해결 방법:
// 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
}