summaryrefslogtreecommitdiff
path: root/src/common/file_search.cpp
diff options
context:
space:
mode:
authorGravatar archshift2014-09-08 17:16:32 -0700
committerGravatar archshift2014-09-08 17:25:43 -0700
commit9d7cc2bedc55b1d1327645b9c816eea3bcd5d658 (patch)
tree009f6afaf127c8c77730222a5d015b150d7885e2 /src/common/file_search.cpp
parentMerge pull request #95 from lioncash/disassembler (diff)
downloadyuzu-9d7cc2bedc55b1d1327645b9c816eea3bcd5d658.tar.gz
yuzu-9d7cc2bedc55b1d1327645b9c816eea3bcd5d658.tar.xz
yuzu-9d7cc2bedc55b1d1327645b9c816eea3bcd5d658.zip
common: Prune all redundant includes
Diffstat (limited to 'src/common/file_search.cpp')
-rw-r--r--src/common/file_search.cpp4
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"