This is a patch to address Bug 8783 -- declspecs can be placed on enum
declarations as well.  To clarify:

__declspec(foo) enum E { x, y } e;  // Puts foo on e
enum __declspec(foo) enum E { x, y } e;  // Puts foo on E

This is important for supporting the deprecated declspec.  Class,
struct and union already function properly.

~Aaron

Attachment: DeclspecEnum.patch
Description: Binary data

_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to