changeset 528:d0ac6faeaf66

Fixed something in dil.Parser.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 16 Dec 2007 23:00:05 +0100
parents c8c3aec130f7
children 135e9e6933a7
files trunk/src/dil/Parser.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/trunk/src/dil/Parser.d	Sun Dec 16 22:45:23 2007 +0100
+++ b/trunk/src/dil/Parser.d	Sun Dec 16 23:00:05 2007 +0100
@@ -393,8 +393,8 @@
     switch (token.type)
     {
     case T.LBrace:
+      auto begin = token;
       nT();
-      auto begin = token;
       auto decls = new Declarations;
       while (token.type != T.RBrace && token.type != T.EOF)
         decls ~= parseDeclarationDefinition();