Fix error in ProcessLauncherWindows.cpp
authorAdrian McCarthy <amccarth@google.com>
Fri, 13 Sep 2019 18:50:39 +0000 (18:50 +0000)
committerAdrian McCarthy <amccarth@google.com>
Fri, 13 Sep 2019 18:50:39 +0000 (18:50 +0000)
Restored missing parens on a function call.

llvm-svn: 371882

lldb/source/Host/windows/ProcessLauncherWindows.cpp

index 3f5c637..b743082 100644 (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;