diff options
| author | 2014-09-10 18:44:08 -0400 | |
|---|---|---|
| committer | 2014-09-10 18:44:08 -0400 | |
| commit | d79fe3ebaadbc19e8ffe5075bad51a9735aafb38 (patch) | |
| tree | 49d8b9dc37a2f9a541aef587c7bb50f9fe3c01f7 /src/common/file_search.cpp | |
| parent | Merge pull request #104 from archshift/removal (diff) | |
| parent | core: Prune redundant includes (diff) | |
| download | yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.gz yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.xz yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.zip | |
Merge pull request #103 from archshift/prune
Prune redundant includes
Diffstat (limited to 'src/common/file_search.cpp')
| -rw-r--r-- | src/common/file_search.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/file_search.cpp b/src/common/file_search.cpp index a9d19477d..cd50ace75 100644 --- a/src/common/file_search.cpp +++ b/src/common/file_search.cpp | |||
| @@ -4,15 +4,13 @@ | |||
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | #include "common/common.h" | 6 | #include "common/common.h" |
| 7 | #include "common/common_paths.h" | 7 | |
| 8 | #ifndef _WIN32 | 8 | #ifndef _WIN32 |
| 9 | #include <sys/types.h> | ||
| 10 | #include <dirent.h> | 9 | #include <dirent.h> |
| 11 | #else | 10 | #else |
| 12 | #include <windows.h> | 11 | #include <windows.h> |
| 13 | #endif | 12 | #endif |
| 14 | 13 | ||
| 15 | #include <string> | ||
| 16 | #include <algorithm> | 14 | #include <algorithm> |
| 17 | 15 | ||
| 18 | #include "common/file_search.h" | 16 | #include "common/file_search.h" |