[llvm] r290402 - KillTheDoctor.cpp: Appease cases on case-senstitive host, like mingw on linux.

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 22 17:39:26 PST 2016


Author: chapuni
Date: Thu Dec 22 19:39:26 2016
New Revision: 290402

URL: http://llvm.org/viewvc/llvm-project?rev=290402&view=rev
Log:
KillTheDoctor.cpp: Appease cases on case-senstitive host, like mingw on linux.

Modified:
    llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp

Modified: llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp?rev=290402&r1=290401&r2=290402&view=diff
==============================================================================
--- llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp (original)
+++ llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp Thu Dec 22 19:39:26 2016
@@ -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;




More information about the llvm-commits mailing list