Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 797 Bytes

compiler-warning-level-4-c4565.md

File metadata and controls

26 lines (20 loc) · 797 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4565
Compiler Warning (level 4) C4565
08/27/2018
C4565
C4565
a71f1341-a4a1-4060-ad1e-9322531883ed

Compiler Warning (level 4) C4565

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

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