forked from OSchip/llvm-project
Fix error in ProcessLauncherWindows.cpp
Restored missing parens on a function call. llvm-svn: 371882
This commit is contained in:
parent
75c9eb5ab2
commit
646a893f15
|
@ -46,7 +46,7 @@ bool GetFlattenedWindowsCommandString(Args args, std::string &command) {
|
|||
|
||||
std::vector<llvm::StringRef> args_ref;
|
||||
for (auto &entry : args.entries())
|
||||
args_ref.push_back(entry.ref);
|
||||
args_ref.push_back(entry.ref());
|
||||
|
||||
command = llvm::sys::flattenWindowsCommandLine(args_ref);
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue