Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'function' : redefinition; the symbol was previously declared with __declspec(modifier)
Remarks
A symbol was redefined or redeclared and the second definition or declaration, unlike the first definition or declaration, did not have a __declspec modifier (modifier). This warning is informational. To fix this warning, delete one of the definitions.
Example
The following example generates C4565:
// C4565.cpp
// compile with: /W4 /LD
__declspec(noalias) void f();
void f(); // C4565