diff options
| author | 2014-09-08 17:16:32 -0700 | |
|---|---|---|
| committer | 2014-09-08 17:25:43 -0700 | |
| commit | 9d7cc2bedc55b1d1327645b9c816eea3bcd5d658 (patch) | |
| tree | 009f6afaf127c8c77730222a5d015b150d7885e2 /src/common/string_util.cpp | |
| parent | Merge pull request #95 from lioncash/disassembler (diff) | |
| download | yuzu-9d7cc2bedc55b1d1327645b9c816eea3bcd5d658.tar.gz yuzu-9d7cc2bedc55b1d1327645b9c816eea3bcd5d658.tar.xz yuzu-9d7cc2bedc55b1d1327645b9c816eea3bcd5d658.zip | |
common: Prune all redundant includes
Diffstat (limited to 'src/common/string_util.cpp')
| -rw-r--r-- | src/common/string_util.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp index c1f22bda3..a3c7f479e 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp | |||
| @@ -3,17 +3,13 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | 5 | #include <algorithm> |
| 6 | #include <cstdlib> | ||
| 7 | #include <cstdio> | ||
| 8 | 6 | ||
| 9 | #include "common/common.h" | 7 | #include "common/common.h" |
| 10 | #include "common/common_paths.h" | ||
| 11 | #include "common/string_util.h" | 8 | #include "common/string_util.h" |
| 12 | 9 | ||
| 13 | #ifdef _WIN32 | 10 | #ifdef _WIN32 |
| 14 | #include <Windows.h> | 11 | #include <Windows.h> |
| 15 | #else | 12 | #else |
| 16 | #include <cerrno> | ||
| 17 | #include <iconv.h> | 13 | #include <iconv.h> |
| 18 | #endif | 14 | #endif |
| 19 | 15 | ||