changeset 111:2f57c5ecd3b2

tiny fix
author Trass3r
date Tue, 31 Aug 2010 22:31:38 +0200
parents 12c0c84d13fd
children 3f02152c5e68
files dmd/TypeAArray.d
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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);