Merged DMD 1.042.

This commit is contained in:
Tomas Lindquist Olsen
2009-04-03 17:59:34 +02:00
parent 57bf95cb42
commit 3d1f8cc565
38 changed files with 6504 additions and 5232 deletions

View File

@@ -45,9 +45,9 @@ char *Identifier::toChars()
return (char *)string;
}
char *Identifier::toHChars2()
const char *Identifier::toHChars2()
{
char *p = NULL;
const char *p = NULL;
if (this == Id::ctor) p = "this";
else if (this == Id::dtor) p = "~this";