Skip to content

Commit

Permalink
KillTheDoctor.cpp: Appease cases on case-senstitive host, like mingw …
Browse files Browse the repository at this point in the history
…on linux.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@290402 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chapuni committed Dec 23, 2016
1 parent 0b79f4e commit c9ccece
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/KillTheDoctor/KillTheDoctor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
#include <system_error>

// These includes must be last.
#include <Windows.h>
#include <WinError.h>
#include <Dbghelp.h>
#include <windows.h>
#include <winerror.h>
#include <dbghelp.h>
#include <psapi.h>

using namespace llvm;
Expand Down

0 comments on commit c9ccece

Please sign in to comment.