diff dmd/NullExp.d @ 137:09c858522d55

merge
author Trass3r
date Mon, 13 Sep 2010 23:29:00 +0200
parents af1bebfd96a4
children e3afd1303184
line wrap: on
line diff
--- a/dmd/NullExp.d	Mon Sep 13 23:27:38 2010 +0200
+++ b/dmd/NullExp.d	Mon Sep 13 23:29:00 2010 +0200
@@ -21,9 +21,10 @@
 {
 	ubyte committed;
 
-	this(Loc loc)
+	this(Loc loc, Type type = null)
 	{
 		super(loc, TOK.TOKnull, NullExp.sizeof);
+        this.type = type;
 	}
 
 	override Expression semantic(Scope sc)