summaryrefslogtreecommitdiff
path: root/src/common/chunk_file.h
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-06-20 22:24:01 +0100
committerGravatar Emmanuel Gil Peyrot2015-06-28 00:36:53 +0100
commit8cf9eb7f431e235a39f380118cfd081a604ea1c9 (patch)
tree40fb32350e16c85e65c44b121f8cf37d11ba6f13 /src/common/chunk_file.h
parentCitra: Fix the includes a bit, thanks to include-what-you-use. (diff)
downloadyuzu-8cf9eb7f431e235a39f380118cfd081a604ea1c9.tar.gz
yuzu-8cf9eb7f431e235a39f380118cfd081a604ea1c9.tar.xz
yuzu-8cf9eb7f431e235a39f380118cfd081a604ea1c9.zip
Common: Fix FileUtil includes, and everything relying on those.
Diffstat (limited to 'src/common/chunk_file.h')
-rw-r--r--src/common/chunk_file.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/common/chunk_file.h b/src/common/chunk_file.h
index dcd80525e..ee9f3d7c0 100644
--- a/src/common/chunk_file.h
+++ b/src/common/chunk_file.h
@@ -26,13 +26,14 @@
26// - Zero backwards/forwards compatibility 26// - Zero backwards/forwards compatibility
27// - Serialization code for anything complex has to be manually written. 27// - Serialization code for anything complex has to be manually written.
28 28
29#include <map> 29#include <cstring>
30#include <vector>
31#include <deque> 30#include <deque>
32#include <string>
33#include <list> 31#include <list>
32#include <map>
34#include <set> 33#include <set>
34#include <string>
35#include <type_traits> 35#include <type_traits>
36#include <vector>
36 37
37#include "common/common_types.h" 38#include "common/common_types.h"
38#include "common/file_util.h" 39#include "common/file_util.h"