[Lldb-commits] [lldb] b4dfc55 - [LLDB] Fix wrong argument in	CommandObjectThreadStepWithTypeAndScope
    Alexandre Ganea via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Thu Nov 28 11:01:04 PST 2019
    
    
  
Author: Alexandre Ganea
Date: 2019-11-28T14:00:56-05:00
New Revision: b4dfc5508f9239f50a3c44dd64e82a488b698b29
URL: https://github.com/llvm/llvm-project/commit/b4dfc5508f9239f50a3c44dd64e82a488b698b29
DIFF: https://github.com/llvm/llvm-project/commit/b4dfc5508f9239f50a3c44dd64e82a488b698b29.diff
LOG: [LLDB] Fix wrong argument in CommandObjectThreadStepWithTypeAndScope
Differential Revision: https://reviews.llvm.org/D70448
Added: 
    
Modified: 
    lldb/source/Commands/CommandObjectThread.cpp
Removed: 
    
################################################################################
diff  --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp
index c93bd9d5c232..a74eec01933b 100644
--- a/lldb/source/Commands/CommandObjectThread.cpp
+++ b/lldb/source/Commands/CommandObjectThread.cpp
@@ -526,7 +526,7 @@ class CommandObjectThreadStepWithTypeAndScope : public CommandObjectParsed {
                                 eCommandProcessMustBeLaunched |
                                 eCommandProcessMustBePaused),
         m_step_type(step_type), m_step_scope(step_scope), m_options(),
-        m_class_options("scripted step", 'C') {
+        m_class_options("scripted step") {
     CommandArgumentEntry arg;
     CommandArgumentData thread_id_arg;
 
        
    
    
More information about the lldb-commits
mailing list