Fix error in ProcessLauncherWindows.cpp

Restored missing parens on a function call.

llvm-svn: 371882
This commit is contained in:
Adrian McCarthy 2019-09-13 18:50:39 +00:00
parent 75c9eb5ab2
commit 646a893f15
1 changed files with 1 additions and 1 deletions

View File

@ -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;