Fixed some #includes to be correct for both D1 and D2

This commit is contained in:
Frits van Bommel
2009-03-08 12:13:22 +01:00
parent cc12db505e
commit 532cccbd3a
2 changed files with 5 additions and 5 deletions

View File

@@ -32,9 +32,9 @@
* and the pointer in memory, as printf expects it.
*/
#include "dmd/mtype.h"
#include "dmd/declaration.h"
#include "dmd/aggregate.h"
#include "mtype.h"
#include "declaration.h"
#include "aggregate.h"
#include "gen/llvm.h"
#include "gen/tollvm.h"

View File

@@ -1,7 +1,7 @@
#include "gen/cl_helpers.h"
#include "dmd/root.h"
#include "dmd/mem.h"
#include "root.h"
#include "mem.h"
#include <cctype> // isupper, tolower
#include <algorithm>