Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 507 Bytes

compiler-error-c2598.md

File metadata and controls

25 lines (20 loc) · 507 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2598
Compiler Error C2598
11/04/2016
C2598
C2598
40777c62-39ba-441e-b081-f49f94b43547

Compiler Error C2598

linkage specification must be at global scope

The linkage specifier is declared at local scope.

The following sample generates C2598:

// C2598.cpp// compile with: /cvoidfunc() { extern"C"intfunc2(); // C2598 } extern"C"intfunc( int i );
close