From 3fffe1f02d849e464f17bc41e1b2d2cb7a606883 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 28 Feb 2018 21:32:24 +0000 Subject: [PATCH] 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 --- lld/Common/Strings.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lld/Common/Strings.cpp b/lld/Common/Strings.cpp index ca07bf3676f1..1fac65b88ae8 100644 --- a/lld/Common/Strings.cpp +++ b/lld/Common/Strings.cpp @@ -18,6 +18,8 @@ #if defined(_MSC_VER) #include + +// DbgHelp.h must be included after Windows.h. #include #pragma comment(lib, "dbghelp.lib") #endif