[Lldb-commits] [lldb] draft: [lldb] Upgrade ValueObject::GetData to return llvm::Expected (PR #130516)
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 17 14:23:56 PDT 2025
================
@@ -207,15 +207,13 @@ lldb::ValueObjectSP lldb_private::formatters::
return lldb::ValueObjectSP();
StreamString stream;
stream.Printf("[%" PRIu64 "]", (uint64_t)idx);
- DataExtractor data;
- Status error;
- val_hash.first->GetData(data, error);
- if (error.Fail())
+ auto data_or_err = val_hash.first->GetData();
+ if (!data_or_err)
----------------
adrian-prantl wrote:
same here
https://github.com/llvm/llvm-project/pull/130516
More information about the lldb-commits
mailing list