diff dmd/interpret.c @ 1103:b30fe7e1dbb9

- Updated to DMD frontend 1.041. - Removed dmd/inifile.c , it's not under a free license, replaced with libconfig based config file.
author Tomas Lindquist Olsen <tomas.l.olsen gmail.com>
date Thu, 12 Mar 2009 20:37:27 +0100
parents 29c0d1194033
children 1565b33a6ecb
line wrap: on
line diff
--- a/dmd/interpret.c	Thu Mar 12 14:08:57 2009 +0100
+++ b/dmd/interpret.c	Thu Mar 12 20:37:27 2009 +0100
@@ -12,7 +12,7 @@
 #include <stdlib.h>
 #include <assert.h>
 
-#include "mem.h"
+#include "rmem.h"
 
 #include "statement.h"
 #include "expression.h"
@@ -80,8 +80,8 @@
     if (semanticRun == 0 && scope)
     {
 	semantic3(scope);
-    if (global.errors)  // if errors compiling this function
-        return NULL;
+	if (global.errors)	// if errors compiling this function
+	    return NULL;
     }
     if (semanticRun < 2)
 	return NULL;