diff dmd/cast.c @ 717:a26b0c5d5942

Merged DMD 1.036. Improved comments a little in the runtime source code.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 22 Oct 2008 17:06:17 +0200
parents eef8ac26c66c
children bc982f1ad106
line wrap: on
line diff
--- a/dmd/cast.c	Wed Oct 22 15:35:46 2008 +0200
+++ b/dmd/cast.c	Wed Oct 22 17:06:17 2008 +0200
@@ -324,8 +324,8 @@
 MATCH NullExp::implicitConvTo(Type *t)
 {
 #if 0
-    printf("NullExp::implicitConvTo(this=%s, type=%s, t=%s)\n",
-	toChars(), type->toChars(), t->toChars());
+    printf("NullExp::implicitConvTo(this=%s, type=%s, t=%s, committed = %d)\n",
+	toChars(), type->toChars(), t->toChars(), committed);
 #endif
     if (this->type->equals(t))
 	return MATCHexact;