[Lldb-commits] [PATCH] D79722: Correct the argument list of command `breakpoint read`

Raphael Isemann via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri May 15 00:08:59 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG7c89297cf7ee: Correct the argument list of command `breakpoint read` (authored by MrHate, committed by teemperor).
Herald added a subscriber: lldb-commits.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D79722/new/

https://reviews.llvm.org/D79722

Files:
  lldb/source/Commands/CommandObjectBreakpoint.cpp


Index: lldb/source/Commands/CommandObjectBreakpoint.cpp
===================================================================
--- lldb/source/Commands/CommandObjectBreakpoint.cpp
+++ lldb/source/Commands/CommandObjectBreakpoint.cpp
@@ -2034,14 +2034,7 @@
                             "Read and set the breakpoints previously saved to "
                             "a file with \"breakpoint write\".  ",
                             nullptr),
-        m_options() {
-    CommandArgumentEntry arg;
-    CommandObject::AddIDsArgumentData(arg, eArgTypeBreakpointID,
-                                      eArgTypeBreakpointIDRange);
-    // Add the entry for the first argument for this command to the object's
-    // arguments vector.
-    m_arguments.push_back(arg);
-  }
+        m_options() {}
 
   ~CommandObjectBreakpointRead() override = default;
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D79722.264168.patch
Type: text/x-patch
Size: 852 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200515/5cf4b851/attachment.bin>


More information about the lldb-commits mailing list