diff dmd/TypeAArray.d @ 111:2f57c5ecd3b2

tiny fix
author Trass3r
date Tue, 31 Aug 2010 22:31:38 +0200
parents e6090d1aea7c
children e28b18c23469
line wrap: on
line diff
--- a/dmd/TypeAArray.d	Tue Aug 31 22:29:00 2010 +0200
+++ b/dmd/TypeAArray.d	Tue Aug 31 22:31:38 2010 +0200
@@ -176,8 +176,8 @@
 				 */
 				TemplateInstance ti = new TemplateInstance(loc, Id.AssociativeArray);
 				Objects tiargs = new Objects();
-				tiargs.push(cast(void*)index);
-				tiargs.push(cast(void*)next);
+				tiargs.push(index);
+				tiargs.push(next);
 				ti.tiargs = tiargs;
 	
 				ti.semantic(sc);