* src/mm/cacao-gc/final.h (toolbox/list.h): Renamed to
[cacao.git] / src / mm / cacao-gc / gc.h
index 31060381d73868057a9a8dcbfb33960a0ee6cf40..082d8083d6e225f263e92f29fe2a12fe67bd18a3 100644 (file)
 #include "config.h"
 #include "vm/types.h"
 
-#include "threads/thread.h"
+#include "threads/thread.hpp"
 
-#include "toolbox/list.h"
-#include "vm/jit/replace.h"
+#include "toolbox/list.hpp"
+#include "vm/jit/replace.hpp"
 
 
 /* Configuration Switches *****************************************************/
@@ -54,7 +54,7 @@
 
 #if !defined(NDEBUG) && defined(GC_DEBUGGING)
 # include <assert.h>
-# include "vmcore/options.h"
+# include "vm/options.h"
 # define GC_LOG(code) if (opt_verbosegc) { code; }
 # define GC_ASSERT(assertion) assert(assertion)
 #else