# HG changeset patch # User Aziz K?ksal # Date 1201288806 -3600 # Node ID b0732f766ba05012244b1b2a6b504449e7371f80 # Parent c67d2c3c0b3d150fd4a06ba2c54380decdb160f5 Fixed parameter name in constructor of VariablesDeclaration. diff -r c67d2c3c0b3d -r b0732f766ba0 trunk/src/dil/ast/Declarations.d --- a/trunk/src/dil/ast/Declarations.d Thu Jan 24 19:09:48 2008 +0100 +++ b/trunk/src/dil/ast/Declarations.d Fri Jan 25 20:20:06 2008 +0100 @@ -388,7 +388,7 @@ TypeNode typeNode; Identifier*[] names; Expression[] inits; - this(TypeNode typeNode, Identifier*[] names, Expression[] values) + this(TypeNode typeNode, Identifier*[] names, Expression[] inits) { // No empty arrays allowed. Both arrays must be of same size. assert(names.length != 0 && names.length == inits.length);