summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2017-01-24 13:47:36 +1300
committerGitHub <noreply@github.com>2017-01-24 13:47:36 +1300
commitf70a1a27fae804bf7e1b8b85f4e1a990631efc7b (patch)
treeedf4221f16dd311cbf0370eb005f779c3a1eff9c /Source/Core/Common/FileUtil.cpp
parent00c993143f2934ac9b5cb211e2579a0bcc146864 (diff)
parent0bc40cacda333910d7ebfc403122c2b914cd8778 (diff)
Merge pull request #4726 from ligfx/addingwindowsheaders
Fix building without PCH on Windows
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
-rw-r--r--Source/Core/Common/FileUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp
index 652a2e466c..f4f3986b76 100644
--- a/Source/Core/Common/FileUtil.cpp
+++ b/Source/Core/Common/FileUtil.cpp
@@ -20,12 +20,12 @@
#include "Common/Logging/Log.h"
#ifdef _WIN32
+#include <windows.h>
#include <commdlg.h> // for GetSaveFileName
#include <direct.h> // getcwd
#include <io.h>
#include <objbase.h> // guid stuff
#include <shellapi.h>
-#include <windows.h>
#else
#include <dirent.h>
#include <errno.h>