diff gen/structs.cpp @ 169:2df270e1ba59 trunk

[svn r185] Fixed broken nested classes with data members, did DMD change the class layout? tango.text.Regex now compiles. Commented some of the *very* verbose logging for -vv option.
author lindquist
date Tue, 06 May 2008 03:07:21 +0200
parents 5c17f81fc1c1
children 95f07e3f8bb9
line wrap: on
line diff
--- a/gen/structs.cpp	Tue May 06 02:26:17 2008 +0200
+++ b/gen/structs.cpp	Tue May 06 03:07:21 2008 +0200
@@ -122,7 +122,7 @@
     for (unsigned i=0; i<sd->fields.dim; ++i) {
         VarDeclaration* vd = (VarDeclaration*)sd->fields.data[i];
         Type* vdtype = DtoDType(vd->type);
-        Logger::println("found %u type %s", vd->offset, vdtype->toChars());
+        //Logger::println("found %u type %s", vd->offset, vdtype->toChars());
         assert(gIR->irDsymbol[vd].irField->index >= 0);
         if (os == vd->offset && vdtype == t) {
             idxs.push_back(gIR->irDsymbol[vd].irField->index);