forked from OSchip/llvm-project
				
			Fix initialization order warning in mingw32 build
No change in functionality. llvm-svn: 192953
This commit is contained in:
		
							parent
							
								
									5b5a7865e7
								
							
						
					
					
						commit
						153675b718
					
				| 
						 | 
					@ -27,7 +27,7 @@
 | 
				
			||||||
namespace llvm {
 | 
					namespace llvm {
 | 
				
			||||||
using namespace sys;
 | 
					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.
 | 
					// This function just uses the PATH environment variable to find the program.
 | 
				
			||||||
std::string sys::FindProgramByName(const std::string &progName) {
 | 
					std::string sys::FindProgramByName(const std::string &progName) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue