description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2598 | Compiler Error C2598 | 11/04/2016 |
|
| 40777c62-39ba-441e-b081-f49f94b43547 |
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 );