changeset 697:b0732f766ba0

Fixed parameter name in constructor of VariablesDeclaration.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Fri, 25 Jan 2008 20:20:06 +0100
parents c67d2c3c0b3d
children 1564e41f454e
files trunk/src/dil/ast/Declarations.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);