mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-13 15:37:24 +00:00
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
This commit is contained in:
parent
71f6d6ee1a
commit
d07a8a2491
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user