http://d.puremagic.com/issues/show_bug.cgi?id=2510
Stewart Gordon <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #3 from Stewart Gordon <[email protected]> 2009-09-26 11:59:25 PDT --- You have the same typo in three different places: fprintf(stdmsg," instantiatied in %s: %s\n", cur->loc.toChars(), cur->toChars()); instantiatied -> instantiated And while(cur = cur->tinst) probably ought to be written while((cur = cur->tinst) != NULL) to avoid triggering a "possibly incorrect assignment" warning in some compilers. But I like the idea of defaulting to showing the three instantiation levels at each end of the chain. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
