Daniele Bartolini 11 лет назад
Родитель
Сommit
000355f8a5
2 измененных файлов с 1 добавлено и 3 удалено
  1. 0 3
      engine/core/assert.h
  2. 1 0
      engine/core/memory/memory.cpp

+ 0 - 3
engine/core/assert.h

@@ -5,9 +5,6 @@
 
 #pragma once
 
-#include <cstdlib>
-#include <cstdio>
-#include "config.h"
 #include "error.h"
 
 #if defined(CROWN_DEBUG)

+ 1 - 0
engine/core/memory/memory.cpp

@@ -6,6 +6,7 @@
 #include "memory.h"
 #include "allocator.h"
 #include "mutex.h"
+#include <stdlib.h> // malloc, free
 
 // void* operator new(size_t) throw (std::bad_alloc)
 // {