Skip to content

Commit 646a893

Browse files
Fix error in ProcessLauncherWindows.cpp
Restored missing parens on a function call. llvm-svn: 371882
1 parent 75c9eb5 commit 646a893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Host/windows/ProcessLauncherWindows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ bool GetFlattenedWindowsCommandString(Args args, std::string &command) {
4646

4747
std::vector<llvm::StringRef> args_ref;
4848
for (auto &entry : args.entries())
49-
args_ref.push_back(entry.ref);
49+
args_ref.push_back(entry.ref());
5050

5151
command = llvm::sys::flattenWindowsCommandLine(args_ref);
5252
return true;

0 commit comments

Comments
 (0)