changeset 279:79c095aae50d

- Removed null from calls to super().
author aziz
date Mon, 06 Aug 2007 18:10:05 +0000
parents e5a6b56c7716
children 1eb54f6f392e
files trunk/src/Types.d
diffstat 1 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/trunk/src/Types.d	Mon Aug 06 15:35:04 2007 +0000
+++ b/trunk/src/Types.d	Mon Aug 06 18:10:05 2007 +0000
@@ -255,7 +255,7 @@
 {
   this()
   {
-    super(TID.Undefined, null);
+    super(TID.Undefined);
   }
 }
 
@@ -264,7 +264,7 @@
   Type[] dotList;
   this(Type[] dotList)
   {
-    super(TID.DotList, null);
+    super(TID.DotList);
     this.dotList = dotList;
   }
 }
@@ -274,7 +274,7 @@
   Token* ident;
   this(Token* ident)
   {
-    super(TID.Identifier, null);
+    super(TID.Identifier);
     this.ident = ident;
   }
 }
@@ -284,7 +284,7 @@
   Expression e;
   this(Expression e)
   {
-    super(TID.Typeof, null);
+    super(TID.Typeof);
     this.e = e;
   }
 }
@@ -295,7 +295,7 @@
   TemplateArguments targs;
   this(Token* ident, TemplateArguments targs)
   {
-    super(TID.TemplateInstance, null);
+    super(TID.TemplateInstance);
     this.ident = ident;
     this.targs = targs;
   }
@@ -337,7 +337,7 @@
   TemplateParameters tparams;
   this(Type returnType, Parameters parameters, TemplateParameters tparams = null)
   {
-    super(TID.Function, null);
+    super(TID.Function);
     this.returnType = returnType;
     this.parameters = parameters;
     this.tparams = tparams;