diff dmd/attrib.c @ 797:340acf1535d0

Removed KDevelop3 project files, CMake can generate them just fine! Fixed function literals in static initializers. Changed alignment of delegates from 2*PTRSIZE to just PTRSIZE. Changed errors to go to stderr instead of stdout. Fairly major rewriting of struct/union/class handling, STILL A BIT BUGGY !!!
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 29 Nov 2008 21:25:43 +0100
parents 661384d6a936
children 7d16ce7ad19d
line wrap: on
line diff
--- a/dmd/attrib.c	Sat Nov 29 12:28:10 2008 +0100
+++ b/dmd/attrib.c	Sat Nov 29 21:25:43 2008 +0100
@@ -616,7 +616,6 @@
 	sc->flags = 0;
 	aad.structalign = sc->structalign;
 	aad.parent = ad;
-
 	for (unsigned i = 0; i < decl->dim; i++)
 	{
 	    Dsymbol *s = (Dsymbol *)decl->data[i];
@@ -672,6 +671,9 @@
 	{
 	    VarDeclaration *v = (VarDeclaration *)aad.fields.data[i];
 
+        // LDC
+        v->offset2 = sc->offset;
+
 	    v->offset += sc->offset;
 
         // LDC