Make sure that clang-format doesn't reorder include files.

clang-format won't reorder include files if there is a blank line.
Thanks to Nico for the tips.

llvm-svn: 326371
This commit is contained in:
Rui Ueyama 2018-02-28 21:32:24 +00:00
parent 926bbc0256
commit 3fffe1f02d

View File

@ -18,6 +18,8 @@
#if defined(_MSC_VER)
#include <Windows.h>
// DbgHelp.h must be included after Windows.h.
#include <DbgHelp.h>
#pragma comment(lib, "dbghelp.lib")
#endif