comparison dmd/cast.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 bc982f1ad106
children eeb8b95ea92e
comparison
equal deleted inserted replaced
1102:ae950bd712d3 1103:b30fe7e1dbb9
8 // See the included readme.txt for details. 8 // See the included readme.txt for details.
9 9
10 #include <stdio.h> 10 #include <stdio.h>
11 #include <assert.h> 11 #include <assert.h>
12 12
13 #if _WIN32 || IN_GCC || IN_LLVM 13 #include "rmem.h"
14 #include "mem.h"
15 #else
16 #include "../root/mem.h"
17 #endif
18 14
19 #include "expression.h" 15 #include "expression.h"
20 #include "mtype.h" 16 #include "mtype.h"
21 #include "utf.h" 17 #include "utf.h"
22 #include "declaration.h" 18 #include "declaration.h"