[lld] r288995 - Fix Windows buildbots.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 7 15:24:32 PST 2016


Author: ruiu
Date: Wed Dec  7 17:24:32 2016
New Revision: 288995

URL: http://llvm.org/viewvc/llvm-project?rev=288995&view=rev
Log:
Fix Windows buildbots.

clang-format-diff sorted these #include's in the asciibetical order,
but they need to be in this order.

Modified:
    lld/trunk/COFF/Strings.cpp

Modified: lld/trunk/COFF/Strings.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/COFF/Strings.cpp?rev=288995&r1=288994&r2=288995&view=diff
==============================================================================
--- lld/trunk/COFF/Strings.cpp (original)
+++ lld/trunk/COFF/Strings.cpp Wed Dec  7 17:24:32 2016
@@ -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
 




More information about the llvm-commits mailing list