Explorar el Código

partition_filesystem, vfs_real: Add missing standard includes

Lioncash hace 8 años
padre
commit
ec71915ede
Se han modificado 2 ficheros con 4 adiciones y 0 borrados
  1. 3 0
      src/core/file_sys/partition_filesystem.cpp
  2. 1 0
      src/core/file_sys/vfs_real.cpp

+ 3 - 0
src/core/file_sys/partition_filesystem.cpp

@@ -2,6 +2,9 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#include <algorithm>
+#include <cstddef>
+#include <cstring>
 #include <iterator>
 #include <utility>
 

+ 1 - 0
src/core/file_sys/vfs_real.cpp

@@ -2,6 +2,7 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#include <algorithm>
 #include <iterator>
 #include <utility>