[llvm-commits] [llvm] r169255 - /llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp

NAKAMURA Takumi geek4civic at gmail.com
Tue Dec 4 03:34:27 PST 2012


Author: chapuni
Date: Tue Dec  4 05:34:27 2012
New Revision: 169255

URL: http://llvm.org/viewvc/llvm-project?rev=169255&view=rev
Log:
KillTheDoctor.cpp: Restore Win32 SDK headers before r169251.

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=169255&r1=169254&r2=169255&view=diff
==============================================================================
--- llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp (original)
+++ llvm/trunk/utils/KillTheDoctor/KillTheDoctor.cpp Tue Dec  4 05:34:27 2012
@@ -47,13 +47,13 @@
 #include <cerrno>
 #include <cstdlib>
 #include <map>
-#include <psapi.h>
 #include <string>
 
 // This includes must be last.
-#include <Dbghelp.h>
-#include <WinError.h>
 #include <Windows.h>
+#include <WinError.h>
+#include <Dbghelp.h>
+#include <psapi.h>
 
 using namespace llvm;
 





More information about the llvm-commits mailing list