Daniele Bartolini 10 년 전
부모
커밋
0880c00425

+ 1 - 0
src/core/filesystem/disk_filesystem.cpp

@@ -4,6 +4,7 @@
  */
 
 #include "disk_filesystem.h"
+#include "dynamic_string.h"
 #include "file.h"
 #include "os.h"
 #include "path.h"

+ 1 - 0
src/core/filesystem/disk_filesystem.h

@@ -5,6 +5,7 @@
 
 #pragma once
 
+#include "dynamic_string.h"
 #include "filesystem.h"
 
 namespace crown

+ 2 - 2
src/core/filesystem/filesystem.h

@@ -5,9 +5,9 @@
 
 #pragma once
 
-#include "filesystem_types.h"
 #include "container_types.h"
-#include "dynamic_string.h"
+#include "filesystem_types.h"
+#include "string_types.h"
 
 namespace crown
 {

+ 4 - 3
src/resource/compile_options.h

@@ -5,12 +5,13 @@
 
 #pragma once
 
-#include "filesystem.h"
+#include "dynamic_string.h"
 #include "file.h"
+#include "filesystem.h"
 #include "log.h"
-#include "vector.h"
-#include "temp_allocator.h"
 #include "path.h"
+#include "temp_allocator.h"
+#include "vector.h"
 #include <setjmp.h>
 
 #define RESOURCE_COMPILER_ASSERT(condition, opts, msg, ...) do { if (!(condition))\

+ 5 - 4
src/resource/package_resource.cpp

@@ -3,15 +3,16 @@
  * License: https://github.com/taylor001/crown/blob/master/LICENSE
  */
 
+#include "array.h"
+#include "compile_options.h"
 #include "file.h"
 #include "filesystem.h"
+#include "map.h"
 #include "package_resource.h"
-#include "temp_allocator.h"
 #include "reader_writer.h"
-#include "compile_options.h"
-#include "array.h"
 #include "sjson.h"
-#include "map.h"
+#include "string_id.h"
+#include "temp_allocator.h"
 
 namespace crown
 {

+ 4 - 3
src/resource/package_resource.h

@@ -5,11 +5,12 @@
 
 #pragma once
 
-#include "memory_types.h"
-#include "resource_types.h"
-#include "filesystem_types.h"
 #include "compiler_types.h"
 #include "container_types.h"
+#include "filesystem_types.h"
+#include "memory_types.h"
+#include "resource_types.h"
+#include "string_types.h"
 
 namespace crown
 {

+ 4 - 3
src/resource/resource_loader.cpp

@@ -3,13 +3,14 @@
  * License: https://github.com/taylor001/crown/blob/master/LICENSE
  */
 
-#include "resource_loader.h"
 #include "config.h"
+#include "dynamic_string.h"
+#include "filesystem.h"
 #include "memory.h"
+#include "path.h"
 #include "queue.h"
-#include "filesystem.h"
+#include "resource_loader.h"
 #include "temp_allocator.h"
-#include "path.h"
 
 namespace crown
 {