summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-20 22:28:35 -0400
committerGravatar Lioncash2018-07-20 22:28:35 -0400
commitec71915ede4cd1322ce1781b2a4545dfd46a0abf (patch)
tree641ca049b7101c87f76faa7714c49af9a8181d54 /src
parentpartition_filesystem, vfs_real: Use std::move in ReplaceFileWithSubdirectory(... (diff)
downloadyuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.gz
yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.xz
yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.zip
partition_filesystem, vfs_real: Add missing standard includes
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/partition_filesystem.cpp3
-rw-r--r--src/core/file_sys/vfs_real.cpp1
2 files changed, 4 insertions, 0 deletions
diff --git a/src/core/file_sys/partition_filesystem.cpp b/src/core/file_sys/partition_filesystem.cpp
index c523a605a..8d2bd9f6b 100644
--- a/src/core/file_sys/partition_filesystem.cpp
+++ b/src/core/file_sys/partition_filesystem.cpp
@@ -2,6 +2,9 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm>
6#include <cstddef>
7#include <cstring>
5#include <iterator> 8#include <iterator>
6#include <utility> 9#include <utility>
7 10
diff --git a/src/core/file_sys/vfs_real.cpp b/src/core/file_sys/vfs_real.cpp
index 305d44a93..8df6e97ef 100644
--- a/src/core/file_sys/vfs_real.cpp
+++ b/src/core/file_sys/vfs_real.cpp
@@ -2,6 +2,7 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <algorithm>
5#include <iterator> 6#include <iterator>
6#include <utility> 7#include <utility>
7 8