[Lldb-commits] [lldb] [lldb] Add SetValueFromCString API to SyntheticFronend (PR #67309)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 25 13:49:13 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;
+ }
+
----------------
bulbazord wrote:
Where is this used? I assume you have code downstream that actually implements this?
https://github.com/llvm/llvm-project/pull/67309
More information about the lldb-commits
mailing list