編譯器警告 (層級 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()
{
}