diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-21 04:28:35 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-21 04:28:35 +0200 |
commit | ec71915ede4cd1322ce1781b2a4545dfd46a0abf (patch) | |
tree | 641ca049b7101c87f76faa7714c49af9a8181d54 /src/core/file_sys/partition_filesystem.cpp | |
parent | partition_filesystem, vfs_real: Use std::move in ReplaceFileWithSubdirectory() where applicable (diff) | |
download | yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.gz yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.bz2 yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.lz yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.xz yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.tar.zst yuzu-ec71915ede4cd1322ce1781b2a4545dfd46a0abf.zip |
Diffstat (limited to 'src/core/file_sys/partition_filesystem.cpp')
-rw-r--r-- | src/core/file_sys/partition_filesystem.cpp | 3 |
1 files changed, 3 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 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <algorithm> +#include <cstddef> +#include <cstring> #include <iterator> #include <utility> |