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
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits