Fix Windows buildbots.
authorRui Ueyama <ruiu@google.com>
Wed, 7 Dec 2016 23:24:32 +0000 (23:24 +0000)
committerRui Ueyama <ruiu@google.com>
Wed, 7 Dec 2016 23:24:32 +0000 (23:24 +0000)
clang-format-diff sorted these #include's in the asciibetical order,
but they need to be in this order.

llvm-svn: 288995

lld/COFF/Strings.cpp

index c7eaef0..d055841 100644 (file)
@@ -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