Expand Minimize
This topic has not yet been rated - Rate this topic

Compiler Warning (level 4) C4559

Error Message

'function' : redefinition; the function gains __declspec(modifier)

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.

The following sample generates C4559:

// C4559.cpp
// compile with: /W4 /LD
void f();
__declspec(noalias) void f();   // C4559
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.