diff options
author | Alp Toker <alp@nuanti.com> | 2013-10-18 07:09:58 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-10-18 07:09:58 +0000 |
commit | 153675b718f7f845547a57e4b83e7bb78f2f23dd (patch) | |
tree | 4605a9f087a2f0be5683ffd1d241cc511babf24f /llvm/lib | |
parent | 5b5a7865e7abacbfbb3598672168da209856737c (diff) | |
download | llvm-153675b718f7f845547a57e4b83e7bb78f2f23dd.zip llvm-153675b718f7f845547a57e4b83e7bb78f2f23dd.tar.gz llvm-153675b718f7f845547a57e4b83e7bb78f2f23dd.tar.bz2 |
Fix initialization order warning in mingw32 build
No change in functionality.
llvm-svn: 192953
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Support/Windows/Program.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |