[Lldb-commits] [PATCH] D70448: [LLDB] Fix wrong argument in CommandObjectThreadStepWithTypeAndScope

Shafik Yaghmour via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 19 09:29:37 PST 2019


shafik added inline comments.


================
Comment at: lldb/source/Commands/CommandObjectThread.cpp:529
         m_step_type(step_type), m_step_scope(step_scope), m_options(),
-        m_class_options("scripted step", 'C') {
+        m_class_options("scripted step", true, 'C') {
     CommandArgumentEntry arg;
----------------
We could also leave out both `true` and  `C` since both are already defaulted to these values. 


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D70448





More information about the lldb-commits mailing list