경고 C26497
컴파일 시간 평가가 필요한 경우 이 함수- 이름을 표시
constexpr
할 수 있습니다(f.4).
참고 항목
예시
const int GetTheAnswer(int x) noexcept { return 42 + x; } // Could be marked constexpr
void function1() noexcept
{
const int theAnswer = GetTheAnswer(0);
}
새 코드에서 코드 분석 노이즈를 줄이기 위해 함수에 빈 구현이 있는 경우 이 경고가 실행되지 않습니다.
int function1(){ // no C26497
return 1;
}
void function2(){} // no C26497