Parcourir la source

partition_filesystem, vfs_real: Add missing standard includes

Lioncash il y a 8 ans
Parent
commit
ec71915ede
2 fichiers modifiés avec 4 ajouts et 0 suppressions
  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>