컴파일러 경고(수준 1) C4391
'signature': 내장 함수의 반환 형식이 잘못되었습니다. 'type'이 필요합니다.
컴파일러 내장 함수 선언에 잘못된 반환 형식이 있습니다. 결과 이미지가 제대로 실행되지 않을 수 있습니다.
이 경고를 해결하려면 선언을 수정하거나 선언을 삭제하고 적절한 헤더 파일을 #include.
다음 샘플에서는 C4391을 생성합니다.
// C4391.cpp
// compile with: /W1
// processor: x86
// uncomment the following line and delete the line that
// generated the warning to resolve
// #include "xmmintrin.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void _mm_load_ss(float *p); // C4391
#ifdef __cplusplus
}
#endif
int main()
{
}