Fix initialization order warning in mingw32 build
authorAlp Toker <alp@nuanti.com>
Fri, 18 Oct 2013 07:09:58 +0000 (07:09 +0000)
committerAlp Toker <alp@nuanti.com>
Fri, 18 Oct 2013 07:09:58 +0000 (07:09 +0000)
No change in functionality.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192953 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/Windows/Program.inc

index 7a3188b6ff5e73d3cedc6eb138e28c971aca61fb..dc09738e2e71dc204199b3ec314e0a16e839b814 100644 (file)
@@ -27,7 +27,7 @@
 namespace llvm {
 using namespace sys;
 
-ProcessInfo::ProcessInfo() : Pid(0), ProcessHandle(0), ReturnCode(0) {}
+ProcessInfo::ProcessInfo() : ProcessHandle(0), Pid(0), ReturnCode(0) {}
 
 // This function just uses the PATH environment variable to find the program.
 std::string sys::FindProgramByName(const std::string &progName) {