컴파일러 경고(수준 1, 오류) C4392
'signature': 내장 함수의 인수 수가 잘못되었습니다. 'number' 인수가 필요합니다.
컴파일러 내장 함수 선언의 인수 수가 잘못되었습니다. 결과 이미지가 제대로 실행되지 않을 수 있습니다. 이 경고를 해결하려면 선언을 수정하거나 선언과 #include
적절한 헤더 파일을 삭제합니다.
이 경고는 항상 오류로 발행됩니다. 경고 pragma를 사용하여 경고 수준을 사용하지 않도록 설정하거나 변경합니다.
다음 샘플에서는 C4392를 생성합니다.
// C4392.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_stream_pd(double *dp); // C4392
#ifdef __cplusplus
}
#endif
int main()
{
}