[Lldb-commits] [lldb] ea0f8ec - [lldb] Remove commented-out code in CommandObjectExpression (NFC)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Mar 16 23:03:30 PDT 2022


Author: Jonas Devlieghere
Date: 2022-03-16T23:02:59-07:00
New Revision: ea0f8ecc434972aa2754ba4dee62493ce50ee2c7

URL: https://github.com/llvm/llvm-project/commit/ea0f8ecc434972aa2754ba4dee62493ce50ee2c7
DIFF: https://github.com/llvm/llvm-project/commit/ea0f8ecc434972aa2754ba4dee62493ce50ee2c7.diff

LOG: [lldb] Remove commented-out code in CommandObjectExpression (NFC)

Added: 
    

Modified: 
    lldb/source/Commands/CommandObjectExpression.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/source/Commands/CommandObjectExpression.cpp b/lldb/source/Commands/CommandObjectExpression.cpp
index e1a289b219c3c..9a5791735114a 100644
--- a/lldb/source/Commands/CommandObjectExpression.cpp
+++ b/lldb/source/Commands/CommandObjectExpression.cpp
@@ -486,9 +486,6 @@ bool CommandObjectExpression::EvaluateExpression(llvm::StringRef expr,
 void CommandObjectExpression::IOHandlerInputComplete(IOHandler &io_handler,
                                                      std::string &line) {
   io_handler.SetIsDone(true);
-  //    StreamSP output_stream =
-  //    io_handler.GetDebugger().GetAsyncOutputStream();
-  //    StreamSP error_stream = io_handler.GetDebugger().GetAsyncErrorStream();
   StreamFileSP output_sp = io_handler.GetOutputStreamFileSP();
   StreamFileSP error_sp = io_handler.GetErrorStreamFileSP();
 


        


More information about the lldb-commits mailing list