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 | d07a8a2491556243f2fa5c3c2567c532b45f0acd (patch) | |
tree | 08d7079752dd45aa3497e5d5834cecae34c69ac0 /lib/Support/Windows/Program.inc | |
parent | 71f6d6ee1a42a39b897f165802716baaad91e21b (diff) | |
download | external_llvm-d07a8a2491556243f2fa5c3c2567c532b45f0acd.zip external_llvm-d07a8a2491556243f2fa5c3c2567c532b45f0acd.tar.gz external_llvm-d07a8a2491556243f2fa5c3c2567c532b45f0acd.tar.bz2 |
Fix initialization order warning in mingw32 build
No change in functionality.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows/Program.inc')
-rw-r--r-- | lib/Support/Windows/Program.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Windows/Program.inc b/lib/Support/Windows/Program.inc index 7a3188b..dc09738 100644 --- a/lib/Support/Windows/Program.inc +++ b/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) { |