changeset 149:2eb6d07425c9

Fix ticket #2: debug version doesn't compile
author Frank Benoit <benoit@tionex.de>
date Sun, 27 Jan 2008 16:20:03 +0100
parents ee9953d47114
children f2e04420fd6c
files dwt/dwthelper/System.d
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dwt/dwthelper/System.d	Sat Jan 26 00:14:01 2008 +0100
+++ b/dwt/dwthelper/System.d	Sun Jan 27 16:20:03 2008 +0100
@@ -1,4 +1,4 @@
-/**
+/**
  * Authors: Frank Benoit <keinfarbton@googlemail.com>
  */
 module dwt.dwthelper.System;
@@ -9,7 +9,7 @@
     debug{
         static void validCheck(uint SrcLen, uint DestLen, uint copyLen){
             if(SrcLen < copyLen || DestLen < copyLen|| SrcLen < 0 || DestLen < 0){
-                Util.trace("Error : SimpleType.arraycopy(), out of bounds.");
+                //Util.trace("Error : SimpleType.arraycopy(), out of bounds.");
                 assert(0);
             }
         }