[Lldb-commits] [PATCH] D103349: [lldb] Don't print script output twice in HandleCommand

Adrian Prantl via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 1 08:59:41 PDT 2021


aprantl added inline comments.


================
Comment at: lldb/include/lldb/Interpreter/CommandReturnObject.h:169
+  /// as a temporary.
+  bool m_hermetic;
 };
----------------
bool m_hermetic = false;


================
Comment at: lldb/source/Interpreter/CommandReturnObject.cpp:46
       m_status(eReturnStatusStarted), m_did_change_process_state(false),
-      m_interactive(true) {}
+      m_interactive(true), m_hermetic(false) {}
 
----------------
then we don't need this


================
Comment at: lldb/source/Interpreter/CommandReturnObject.cpp:155
   m_interactive = true;
+  m_hermetic = false;
 }
----------------
or this


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

https://reviews.llvm.org/D103349



More information about the lldb-commits mailing list