[Lldb-commits] [lldb] r361455 - Remove unused const version of CommandInterpreter::GetCommandHistory.

Jim Ingham via lldb-commits lldb-commits at lists.llvm.org
Wed May 22 18:40:34 PDT 2019


Author: jingham
Date: Wed May 22 18:40:33 2019
New Revision: 361455

URL: http://llvm.org/viewvc/llvm-project?rev=361455&view=rev
Log:
Remove unused const version of CommandInterpreter::GetCommandHistory.

Modified:
    lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h

Modified: lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h?rev=361455&r1=361454&r2=361455&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h (original)
+++ lldb/trunk/include/lldb/Interpreter/CommandInterpreter.h Wed May 22 18:40:33 2019
@@ -441,8 +441,6 @@ public:
            "the target.max-children-count setting.\n";
   }
 
-  //const CommandHistory &GetCommandHistory() const { return m_command_history; }
-
   CommandHistory &GetCommandHistory() { return m_command_history; }
 
   bool IsActive();




More information about the lldb-commits mailing list