diff options
| author | 2014-04-08 20:15:08 -0400 | |
|---|---|---|
| committer | 2014-04-08 20:15:08 -0400 | |
| commit | de0a034a849f5a1cbe2fed9ef2cc4095c56e672a (patch) | |
| tree | c19b7a97fded29a04d7aca5702ab901820a663dc /src/common/file_search.cpp | |
| parent | got rid of 'src' folders in each sub-project (diff) | |
| download | yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.gz yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.xz yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.zip | |
fixed project includes to use new directory structure
Diffstat (limited to '')
| -rw-r--r-- | src/common/file_search.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/common/file_search.cpp b/src/common/file_search.cpp index 59f640109..a9d19477d 100644 --- a/src/common/file_search.cpp +++ b/src/common/file_search.cpp | |||
| @@ -3,8 +3,8 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | 5 | ||
| 6 | #include "common.h" | 6 | #include "common/common.h" |
| 7 | #include "common_paths.h" | 7 | #include "common/common_paths.h" |
| 8 | #ifndef _WIN32 | 8 | #ifndef _WIN32 |
| 9 | #include <sys/types.h> | 9 | #include <sys/types.h> |
| 10 | #include <dirent.h> | 10 | #include <dirent.h> |
| @@ -15,9 +15,8 @@ | |||
| 15 | #include <string> | 15 | #include <string> |
| 16 | #include <algorithm> | 16 | #include <algorithm> |
| 17 | 17 | ||
| 18 | #include "file_search.h" | 18 | #include "common/file_search.h" |
| 19 | 19 | #include "common/string_util.h" | |
| 20 | #include "string_util.h" | ||
| 21 | 20 | ||
| 22 | 21 | ||
| 23 | CFileSearch::CFileSearch(const CFileSearch::XStringVector& _rSearchStrings, const CFileSearch::XStringVector& _rDirectories) | 22 | CFileSearch::CFileSearch(const CFileSearch::XStringVector& _rSearchStrings, const CFileSearch::XStringVector& _rDirectories) |