From 153675b718f7f845547a57e4b83e7bb78f2f23dd Mon Sep 17 00:00:00 2001 From: Alp Toker Date: Fri, 18 Oct 2013 07:09:58 +0000 Subject: Fix initialization order warning in mingw32 build No change in functionality. llvm-svn: 192953 --- llvm/lib/Support/Windows/Program.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support/Windows/Program.inc') diff --git a/llvm/lib/Support/Windows/Program.inc b/llvm/lib/Support/Windows/Program.inc index 7a3188b..dc09738 100644 --- a/llvm/lib/Support/Windows/Program.inc +++ b/llvm/lib/Support/Windows/Program.inc @@ -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) { -- cgit v1.1