From ad8b4fdeaaf5a380181de1c42832dc6113e6c33f Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 27 Jun 2013 16:27:05 -0700 Subject: [PATCH] Fixed shadowing declaration --- std/d/parser.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/std/d/parser.d b/std/d/parser.d index 5dc8956..8d71608 100755 --- a/std/d/parser.d +++ b/std/d/parser.d @@ -2618,9 +2618,9 @@ body {} // six { advance(); node.hasRight = true; - auto ident = expect(TokenType.identifier); - if (ident is null) return null; - node.right = *ident; + auto id = expect(TokenType.identifier); + if (id is null) return null; + node.right = *id; } return node; }