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
This commit is contained in:
Rui Ueyama 2018-02-28 20:11:33 +00:00
parent 9db7bd5cab
commit 7440135e62
1 changed files with 1 additions and 1 deletions

View File

@ -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