changeset 749:7db35977b947

Fixed loop bug.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 11 Feb 2008 17:58:46 +0100
parents efd87fdb1c00
children 40a52ea29e3b
files trunk/src/dil/parser/Parser.d
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/trunk/src/dil/parser/Parser.d	Mon Feb 11 17:23:27 2008 +0100
+++ b/trunk/src/dil/parser/Parser.d	Mon Feb 11 17:58:46 2008 +0100
@@ -3771,7 +3771,7 @@
     if (skipped(T.RParen))
       return set(params, begin);
 
-    while (1)
+    do
     {
       auto paramBegin = token;
       StorageClass stc, stc_;