הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'function' : redefinition; the function gains __declspec(modifier)
Remarks
A function was redefined or redeclared and the second definition or declaration added a __declspec modifier (modifier). This warning is informational. To fix this warning, delete one of the definitions.
Example
The following example generates C4559:
// C4559.cpp
// compile with: /W4 /LD
void f();
__declspec(noalias) void f(); // C4559