컴파일러 경고(수준 4) C5266
반환 형식의 'const' 한정자는 효과가 없습니다.
C++ 표준은 함수 반환 형식의 최상위 const(또는 volatile) 정규화가 무시되도록 지정합니다.
기본적으로 이 경고는 해제되어 있습니다.
이 경고는 Visual Studio 17.6에서 도입되었습니다.
예시
다음 샘플에서는 C5266을 생성합니다.
// compile with: /W4 /c
#pragma warning(default : 5266) // enable warning C5266 because it's off by default (or compile with /w45266)
const int f() // warning C5266: 'const' qualifier on return type has no effect
{
return 13;
}