diff sema/ImplicitCast.d @ 87:9a35a973175a new_gen

Some improvements to the compiler program
author Anders Halager <halager@gmail.com>
date Sun, 04 May 2008 12:58:02 +0200
parents 682e20aa224f
children eb5b2c719a39
line wrap: on
line diff
--- a/sema/ImplicitCast.d	Fri May 02 21:21:18 2008 +0200
+++ b/sema/ImplicitCast.d	Sun May 04 12:58:02 2008 +0200
@@ -81,8 +81,6 @@
 
         if(identifierType != expType)
         {
-            Stdout(&identifierType)(identifierType).newline;
-            Stdout(&expType)(expType).newline;
             if(!expType.hasImplicitConversionTo(identifierType))
                 throw error(__LINE__, "Cannot make implicit cast between");