From 646a893f1583ecd8af57773bf4cb717a663d92d2 Mon Sep 17 00:00:00 2001 From: Adrian McCarthy Date: Fri, 13 Sep 2019 18:50:39 +0000 Subject: [PATCH] Fix error in ProcessLauncherWindows.cpp Restored missing parens on a function call. llvm-svn: 371882 --- lldb/source/Host/windows/ProcessLauncherWindows.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Host/windows/ProcessLauncherWindows.cpp b/lldb/source/Host/windows/ProcessLauncherWindows.cpp index 3f5c637..b743082 100644 --- a/lldb/source/Host/windows/ProcessLauncherWindows.cpp +++ b/lldb/source/Host/windows/ProcessLauncherWindows.cpp @@ -46,7 +46,7 @@ bool GetFlattenedWindowsCommandString(Args args, std::string &command) { std::vector 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; -- 2.7.4