[Lldb-commits] [lldb] r369660 - [lldb] Remove ')' to fix the build

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 22 08:18:40 PDT 2019


Author: teemperor
Date: Thu Aug 22 08:18:40 2019
New Revision: 369660

URL: http://llvm.org/viewvc/llvm-project?rev=369660&view=rev
Log:
[lldb] Remove ')' to fix the build

That ')' slipped in by accident in the reformatting commit.

Modified:
    lldb/trunk/source/Commands/CommandObjectProcess.cpp

Modified: lldb/trunk/source/Commands/CommandObjectProcess.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Commands/CommandObjectProcess.cpp?rev=369660&r1=369659&r2=369660&view=diff
==============================================================================
--- lldb/trunk/source/Commands/CommandObjectProcess.cpp (original)
+++ lldb/trunk/source/Commands/CommandObjectProcess.cpp Thu Aug 22 08:18:40 2019
@@ -355,7 +355,7 @@ public:
       for (size_t i = 0; i < num_matches; ++i) {
         request.AddCompletion(
             llvm::StringRef(process_infos.GetProcessNameAtIndex(i),
-                            process_infos.GetProcessNameLengthAtIndex(i))));
+                            process_infos.GetProcessNameLengthAtIndex(i)));
       }
     }
 




More information about the lldb-commits mailing list