Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 522 Bytes

compiler-error-c2537.md

File metadata and controls

22 lines (18 loc) · 522 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywords
Learn more about: Compiler Error C2537
Compiler Error C2537
03/08/2024
C2537
C2537

Compiler Error C2537

'specifier' : illegal linkage specification

The linkage specifier is not supported. Only the "C" and "C++" linkage specifiers are supported.

The following sample generates C2537:

// C2537.cpp// compile with: /cextern"c"voidfunc1(); // C2537extern"C"voidfunc2(); // OKextern"C++"voidfunc3(); // OK
close