diff options
author | Rui Ueyama <ruiu@google.com> | 2018-02-28 20:11:33 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2018-02-28 20:11:33 +0000 |
commit | 7440135e621107eeca788106f9a5e610dcde30aa (patch) | |
tree | 45f76db9237fad72e34f2fc73657eee646c4abc1 | |
parent | 9db7bd5cabbb50e9f14f963e62045b09706b0b4e (diff) | |
download | bcm5719-llvm-7440135e621107eeca788106f9a5e610dcde30aa.tar.gz bcm5719-llvm-7440135e621107eeca788106f9a5e610dcde30aa.zip |
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.
llvm-svn: 326360
-rw-r--r-- | lld/Common/Strings.cpp | 2 |
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 |