Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 726 Bytes

compiler-warning-level-4-c4559.md

File metadata and controls

26 lines (20 loc) · 726 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4559
Compiler Warning (level 4) C4559
08/27/2018
C4559
C4559
ed542f60-454d-45cb-85da-987ede61b1ab

Compiler Warning (level 4) C4559

'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 sample generates C4559:

// C4559.cpp
// compile with: /W4 /LD
void f();
__declspec(noalias) void f();   // C4559