Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 653 Bytes

compiler-error-c2337.md

File metadata and controls

24 lines (20 loc) · 653 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2337
Compiler Error C2337
09/19/2019
C2337
C2337
eccc9178-a15e-42cd-bbd0-3cea7cf2d55b

Compiler Error C2337

'attribute-name' : attribute not found

Your code uses an attribute that isn't supported in this context. Or, the attribute isn't available in this version of the compiler. To resolve this issue, remove the unsupported attribute.

The following sample generates C2337:

// C2337.cpp
// compile with: /c
[emitidl];
[module(name="x")];
[grasshopper]   // C2337, not a supported attribute
class a{};