From 24ff91c229eca7ddb399ffe5025a59daa8d042fb Mon Sep 17 00:00:00 2001 From: Joshua Warner Date: Wed, 20 Feb 2013 10:23:20 -0700 Subject: [PATCH] move heap.h to include --- {src => include/avian/vm}/heap/heap.h | 0 src/bootimage.cpp | 2 +- src/heap/heap.cpp | 2 +- src/machine.h | 2 +- src/processor.h | 2 +- unittest/codegen/assembler-test.cpp | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename {src => include/avian/vm}/heap/heap.h (100%) diff --git a/src/heap/heap.h b/include/avian/vm/heap/heap.h similarity index 100% rename from src/heap/heap.h rename to include/avian/vm/heap/heap.h diff --git a/src/bootimage.cpp b/src/bootimage.cpp index 05fef8158d..d6046d459f 100644 --- a/src/bootimage.cpp +++ b/src/bootimage.cpp @@ -8,7 +8,7 @@ There is NO WARRANTY for this software. See license.txt for details. */ -#include "heap/heap.h" +#include #include "heapwalk.h" #include "common.h" #include "machine.h" diff --git a/src/heap/heap.cpp b/src/heap/heap.cpp index 1fc3cae022..0a0778797b 100644 --- a/src/heap/heap.cpp +++ b/src/heap/heap.cpp @@ -8,7 +8,7 @@ There is NO WARRANTY for this software. See license.txt for details. */ -#include "heap/heap.h" +#include #include "system.h" #include "common.h" #include "arch.h" diff --git a/src/machine.h b/src/machine.h index bba9c8dfbf..a2ebb7c538 100644 --- a/src/machine.h +++ b/src/machine.h @@ -13,7 +13,7 @@ #include "common.h" #include "system.h" -#include "heap/heap.h" +#include #include "finder.h" #include "processor.h" #include "constants.h" diff --git a/src/processor.h b/src/processor.h index 47e8d3c02d..7ce69458d4 100644 --- a/src/processor.h +++ b/src/processor.h @@ -13,7 +13,7 @@ #include "common.h" #include "system.h" -#include "heap/heap.h" +#include #include "bootimage.h" #include "heapwalk.h" #include "zone.h" diff --git a/unittest/codegen/assembler-test.cpp b/unittest/codegen/assembler-test.cpp index 760e770bd8..237b8f7209 100644 --- a/unittest/codegen/assembler-test.cpp +++ b/unittest/codegen/assembler-test.cpp @@ -11,7 +11,7 @@ #include #include "common.h" -#include "heap/heap.h" +#include #include "system.h" #include "target.h"