# HG changeset patch # User Trass3r # Date 1283286698 -7200 # Node ID 2f57c5ecd3b22fa508b726ce91f3ad81da15b423 # Parent 12c0c84d13fd5858809fb2326ecef4f88e2c7b20 tiny fix diff -r 12c0c84d13fd -r 2f57c5ecd3b2 dmd/TypeAArray.d --- 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);