diff options
author | Rui Ueyama <ruiu@google.com> | 2016-12-07 23:24:32 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-12-07 23:24:32 +0000 |
commit | 332e02a164ca8209e4a10f9c5dd82b4aec7955be (patch) | |
tree | dad1612b46d289ec40d225209a5155eff2f204bf | |
parent | 77bb4053308ac3474d43cd3c7c969e1c32de90ac (diff) | |
download | bcm5719-llvm-332e02a164ca8209e4a10f9c5dd82b4aec7955be.tar.gz bcm5719-llvm-332e02a164ca8209e4a10f9c5dd82b4aec7955be.zip |
Fix Windows buildbots.
clang-format-diff sorted these #include's in the asciibetical order,
but they need to be in this order.
llvm-svn: 288995
-rw-r--r-- | lld/COFF/Strings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/Strings.cpp b/lld/COFF/Strings.cpp index c7eaef0b73b..d0558413f67 100644 --- a/lld/COFF/Strings.cpp +++ b/lld/COFF/Strings.cpp @@ -10,8 +10,8 @@ #include "Strings.h" #if defined(_MSC_VER) -#include <DbgHelp.h> #include <Windows.h> +#include <DbgHelp.h> #pragma comment(lib, "dbghelp.lib") #endif |