diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-21 01:47:53 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-22 23:37:29 +0100 |
| commit | c698c07755fb95990f7b74ac525a65b2c725bfbf (patch) | |
| tree | 1db804d4eaf32e09a6d17ac8e265af471fb74384 /Source/Core/DiscIO/CompressedBlob.cpp | |
| parent | 83b7bb64aa5e1ee6b18eaa5d08c17bb5b6c57048 (diff) | |
Make DiscIO/ mostly IWYU clean (and fix errors in rest of the project detected by this change).
Diffstat (limited to 'Source/Core/DiscIO/CompressedBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/CompressedBlob.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/CompressedBlob.cpp b/Source/Core/DiscIO/CompressedBlob.cpp index f3dd250b78..94d56b3172 100644 --- a/Source/Core/DiscIO/CompressedBlob.cpp +++ b/Source/Core/DiscIO/CompressedBlob.cpp @@ -5,15 +5,19 @@ #ifdef _WIN32 #include <io.h> #include <windows.h> -#else -#include <unistd.h> #endif +#include <algorithm> #include <cinttypes> +#include <cstdio> +#include <cstring> +#include <string> #include <zlib.h> +#include "Common/Common.h" #include "Common/FileUtil.h" #include "Common/Hash.h" +#include "DiscIO/Blob.h" #include "DiscIO/CompressedBlob.h" #include "DiscIO/DiscScrubber.h" |
