[Lldb-commits] [PATCH] D67891: remove File::SetStream(), make new files instead.

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Sep 27 01:17:08 PDT 2019


labath accepted this revision.
labath added a comment.
This revision is now accepted and ready to land.

looks good to me



================
Comment at: lldb/source/Commands/CommandObjectGUI.cpp:32-33
+    File &input = debugger.GetInputFile();
+    if (input.GetIsRealTerminal() &&
+        input.GetIsInteractive()) {
       IOHandlerSP io_handler_sp(new IOHandlerCursesGUI(debugger));
----------------
This looks like it would fit on one line. Did you run clang-format?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D67891





More information about the lldb-commits mailing list