diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2014-02-19 01:54:11 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2014-02-20 01:01:10 +0100 |
| commit | 3f9c38d2314a259a9c34dd89bcdfab3af00a02f5 (patch) | |
| tree | c95735784575741b8a5b0880ffb3b66950a940ab /Source/Core/Common/FileUtil.cpp | |
| parent | 939df46674d5ce3803292431495e479bf6f434b5 (diff) | |
Fix more header sorting issues in Common/ (now check-includes clean).
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
| -rw-r--r-- | Source/Core/Common/FileUtil.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp index ca36bad966..561435fb16 100644 --- a/Source/Core/Common/FileUtil.cpp +++ b/Source/Core/Common/FileUtil.cpp @@ -3,32 +3,32 @@ // Refer to the license.txt file included. #include <algorithm> +#include <fcntl.h> #include <sys/stat.h> #include "Common/CommonPaths.h" #include "Common/FileUtil.h" #ifdef _WIN32 -#include <windows.h> -#include <shlobj.h> // for SHGetFolderPath -#include <shellapi.h> #include <commdlg.h> // for GetSaveFileName -#include <io.h> #include <direct.h> // getcwd +#include <io.h> +#include <shellapi.h> +#include <shlobj.h> // for SHGetFolderPath +#include <windows.h> #else -#include <sys/param.h> -#include <sys/types.h> #include <dirent.h> #include <errno.h> -#include <stdlib.h> #include <libgen.h> +#include <stdlib.h> +#include <sys/param.h> +#include <sys/types.h> #endif -#include <fcntl.h> #if defined(__APPLE__) +#include <CoreFoundation/CFBundle.h> #include <CoreFoundation/CFString.h> #include <CoreFoundation/CFURL.h> -#include <CoreFoundation/CFBundle.h> #endif #ifndef S_ISDIR |
