Daniele Bartolini 10 anni fa
parent
commit
a77b66adc3

+ 2 - 1
src/core/filesystem/path.cpp

@@ -3,9 +3,10 @@
  * License: https://github.com/taylor001/crown/blob/master/LICENSE
  */
 
+#include "dynamic_string.h"
 #include "path.h"
 #include <ctype.h> // isalpha
-#include <string.h> // strlen, strrchr
+#include <string.h> // strrchr
 
 namespace crown
 {

+ 1 - 1
src/core/filesystem/path.h

@@ -6,7 +6,7 @@
 #pragma once
 
 #include "platform.h"
-#include "dynamic_string.h"
+#include "string_types.h"
 
 namespace crown
 {

+ 2 - 1
src/device/device_options.cpp

@@ -3,10 +3,11 @@
  * License: https://github.com/taylor001/crown/blob/master/LICENSE
  */
 
-#include "device_options.h"
 #include "command_line.h"
+#include "device_options.h"
 #include "log.h"
 #include "path.h"
+#include <stdlib.h>
 
 namespace crown
 {