[Lldb-commits] [lldb] [lldb] Fix `po` alias by printing fix-its to the console. (PR #68452)
Pete Lawrence via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 6 20:21:35 PDT 2023
================
@@ -43,6 +43,10 @@ class CommandObjectDWIMPrint : public CommandObjectRaw {
HandleArgumentCompletion(CompletionRequest &request,
OptionElementVector &opt_element_vector) override;
+protected:
+ /// Stores the expression after applying any Fix-Its.
+ std::string m_fixed_expression;
----------------
PortalPete wrote:
Now fixed as a local variable.
https://github.com/llvm/llvm-project/pull/68452
More information about the lldb-commits
mailing list