Sfoglia il codice sorgente

Fix some header includes

Daniele Bartolini 12 anni fa
parent
commit
64e8f5d4e9

+ 1 - 0
engine/core/containers/Array.h

@@ -29,6 +29,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 #include <cstring>
 #include "Assert.h"
 #include "ContainerTypes.h"
+#include "Allocator.h"
 
 namespace crown
 {

+ 1 - 1
engine/core/containers/ContainerTypes.h

@@ -27,7 +27,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 #pragma once
 
 #include "Types.h"
-#include "Allocator.h"
+#include "MemoryTypes.h"
 
 namespace crown
 {

+ 0 - 1
engine/core/containers/IdArray.h

@@ -29,7 +29,6 @@ OTHER DEALINGS IN THE SOFTWARE.
 #include "Assert.h"
 #include "Types.h"
 #include "ContainerTypes.h"
-#include "Log.h"
 
 namespace crown
 {

+ 1 - 0
engine/core/containers/PriorityQueue.h

@@ -28,6 +28,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 
 #include <algorithm>
 #include "ContainerTypes.h"
+#include "Array.h"
 
 namespace crown
 {

+ 1 - 1
engine/core/containers/Queue.h

@@ -26,10 +26,10 @@ OTHER DEALINGS IN THE SOFTWARE.
 
 #pragma once
 
+#include <cstring>
 #include "ContainerTypes.h"
 #include "Array.h"
 #include "Assert.h"
-#include <cstring>
 
 namespace crown
 {