changeset 1063:40d7f9b7357f

Fixed some #includes to be correct for both D1 and D2
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 08 Mar 2009 12:13:22 +0100
parents b9f9bde1707e
children f0b6549055ab
files gen/abi-x86-64.cpp gen/cl_helpers.cpp
diffstat 2 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/gen/abi-x86-64.cpp	Sun Mar 08 11:46:55 2009 +0100
+++ b/gen/abi-x86-64.cpp	Sun Mar 08 12:13:22 2009 +0100
@@ -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"
--- a/gen/cl_helpers.cpp	Sun Mar 08 11:46:55 2009 +0100
+++ b/gen/cl_helpers.cpp	Sun Mar 08 12:13:22 2009 +0100
@@ -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>