[Lldb-commits] [lldb] [lldb] Add SetValueFromCString API to SyntheticFronend (PR #67309)
Pavel Kosov via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 25 23:07:01 PDT 2023
================
@@ -75,6 +77,10 @@ class SyntheticChildrenFrontEnd {
// display purposes
virtual ConstString GetSyntheticTypeName() { return ConstString(); }
+ virtual bool SetValueFromCString(const char *value_str, Status &error) {
+ return false;
+ }
+
----------------
kpdev wrote:
It will be used in the following patches (it is the first, two more to come). But maybe it is better to use one big patch with all changes?
https://github.com/llvm/llvm-project/pull/67309
More information about the lldb-commits
mailing list