diff dmd/CompoundStatement.d @ 177:1475fd394c9e

bug fixes
author korDen
date Sun, 10 Oct 2010 10:38:55 +0400
parents af724d3510d7
children e3afd1303184
line wrap: on
line diff
--- a/dmd/CompoundStatement.d	Sun Oct 10 05:22:45 2010 +0400
+++ b/dmd/CompoundStatement.d	Sun Oct 10 10:38:55 2010 +0400
@@ -66,10 +66,8 @@
 	{
 		foreach (s; statements)
 		{
-			if (s) {
-				s.toChars();
+			if (s)
 				s.toCBuffer(buf, hgs);
-			}
 		}
 	}