diff dmd/TemplateDeclaration.d @ 74:7e0d548de9e6

Switch Arrays of Dsymbols to the new templated Vector type
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Sun, 29 Aug 2010 09:43:40 +0100
parents 2e2a5c3f943a
children 43073c7c7769
line wrap: on
line diff
--- a/dmd/TemplateDeclaration.d	Sat Aug 28 19:42:41 2010 +0400
+++ b/dmd/TemplateDeclaration.d	Sun Aug 29 09:43:40 2010 +0100
@@ -118,7 +118,7 @@
 
     int literal;		// this template declaration is a literal
 
-    this(Loc loc, Identifier id, TemplateParameters parameters, Expression constraint, Array decldefs)
+    this(Loc loc, Identifier id, TemplateParameters parameters, Expression constraint, Dsymbols decldefs)
 	{	
 		super(id);
 		
@@ -154,7 +154,7 @@
 		//printf("TemplateDeclaration.syntaxCopy()\n");
 		TemplateDeclaration td;
 		TemplateParameters p;
-		Array d;
+		Dsymbols d;
 
 		p = null;
 		if (parameters)