diff dmd/Type.d @ 113:3482c73a991b

More cleanup for arrays
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Tue, 31 Aug 2010 23:57:32 +0100
parents 12c0c84d13fd
children e28b18c23469
line wrap: on
line diff
--- a/dmd/Type.d	Wed Sep 01 00:14:27 2010 +0200
+++ b/dmd/Type.d	Tue Aug 31 23:57:32 2010 +0100
@@ -1910,7 +1910,7 @@
 			if (!tp.isTemplateTypeParameter())
 				goto Lnomatch;
 			Type tt = this;
-			Type at = cast(Type)dedtypes.data[i];
+			Type at = cast(Type)dedtypes[i];
 
 			// 5*5 == 25 cases
 			static pure int X(int U, int T) { return ((U << 3) | T); }