diff dmd/TypeClass.d @ 84:be2ab491772e

Expressions -> Vector!Expression
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Mon, 30 Aug 2010 16:12:19 +0100
parents 43073c7c7769
children e28b18c23469
line wrap: on
line diff
--- a/dmd/TypeClass.d	Mon Aug 30 18:42:04 2010 +0400
+++ b/dmd/TypeClass.d	Mon Aug 30 16:12:19 2010 +0100
@@ -164,7 +164,7 @@
 			{   
 				VarDeclaration v2 = cast(VarDeclaration)sym.fields[i];
 				Expression fe = new DotVarExp(e.loc, e, v2);
-				exps.push(cast(void*)fe);
+				exps.push(fe);
 			}
 			e = new TupleExp(e.loc, exps);
 			sc = sc.push();