summaryrefslogtreecommitdiff
path: root/lld/Common
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2018-02-28 20:11:33 +0000
committerRui Ueyama <ruiu@google.com>2018-02-28 20:11:33 +0000
commit954279fe6d1fa3523cb437bfd755690fe508d55b (patch)
treec17fa66609c4a366ecad7acfe5f850bef4e177a1 /lld/Common
parente1455e6541b287b9f38c70deb3b7c51c4e5ca4f2 (diff)
Attempt to build breakage caused by r326339.
clang-format automatically sorted the #include lines, but I believe Windows.h needs to be included before Dbghelp.h.
Diffstat (limited to 'lld/Common')
-rw-r--r--lld/Common/Strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/Common/Strings.cpp b/lld/Common/Strings.cpp
index 16c4edb0885..ca07bf3676f 100644
--- a/lld/Common/Strings.cpp
+++ b/lld/Common/Strings.cpp
@@ -17,8 +17,8 @@
#include <vector>
#if defined(_MSC_VER)
-#include <DbgHelp.h>
#include <Windows.h>
+#include <DbgHelp.h>
#pragma comment(lib, "dbghelp.lib")
#endif