[llvm] r192953 - Fix initialization order warning in mingw32 build

Alp Toker alp at nuanti.com
Fri Oct 18 00:09:58 PDT 2013


Author: alp
Date: Fri Oct 18 02:09:58 2013
New Revision: 192953

URL: http://llvm.org/viewvc/llvm-project?rev=192953&view=rev
Log:
Fix initialization order warning in mingw32 build

No change in functionality.

Modified:
    llvm/trunk/lib/Support/Windows/Program.inc

Modified: llvm/trunk/lib/Support/Windows/Program.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Windows/Program.inc?rev=192953&r1=192952&r2=192953&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Windows/Program.inc (original)
+++ llvm/trunk/lib/Support/Windows/Program.inc Fri Oct 18 02:09:58 2013
@@ -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) {





More information about the llvm-commits mailing list