comparison dmd/mem.c @ 269:967178e31a13 trunk

[svn r290] Forgot to remove a #define in mem.c
author lindquist
date Sun, 15 Jun 2008 18:57:11 +0200
parents 23d0d9855cad
children b30fe7e1dbb9
comparison
equal deleted inserted replaced
268:23d0d9855cad 269:967178e31a13
6 #include <cstdlib> 6 #include <cstdlib>
7 #include <cstring> 7 #include <cstring>
8 #include <cassert> 8 #include <cassert>
9 9
10 #include "mem.h" 10 #include "mem.h"
11
12 #define USE_BOEHM_GC 0
13 11
14 #if USE_BOEHM_GC 12 #if USE_BOEHM_GC
15 // I needed to perfix the dir after upgrading to gc 7.0 13 // I needed to perfix the dir after upgrading to gc 7.0
16 #include "gc/gc.h" 14 #include "gc/gc.h"
17 #endif 15 #endif