diff dmd/declaration.h @ 737:041c1596d217

Removed warnings on ignored aligns. Only do aligment on packed structs, align(1) struct Packed { ... } Changed the way struct/class fields are added, first small part of cleaning up these... Make struct/class/union fields aware of any anonymous struct/union they might be part of, not yet really useful, but part of getting better union support.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 28 Oct 2008 15:41:09 +0100
parents 6aeaef263289
children dc8b8b7ea0c1
line wrap: on
line diff
--- a/dmd/declaration.h	Mon Oct 27 17:42:38 2008 +0100
+++ b/dmd/declaration.h	Tue Oct 28 15:41:09 2008 +0100
@@ -37,6 +37,7 @@
 struct TupleType;
 struct InterState;
 struct IRState;
+struct AnonDeclaration;
 
 enum PROT;
 enum LINK;
@@ -269,6 +270,9 @@
 
     // Eliminate need for dynamic_cast
     VarDeclaration *isVarDeclaration() { return (VarDeclaration *)this; }
+
+    // LDC
+    AnonDeclaration* anonDecl;
 };
 
 /**************************************************************/