================
@@ -370,26 +369,26 @@ Args ProcessProperties::GetAlwaysRunThreadNames() const {
return args;
}
+OptionValueProperties *ProcessProperties::GetExperimentalProperties() const {
+ const Property *exp_property =
+ m_collection_sp->GetProperty(Properties::GetExperimentalSettingsName());
+ if (!exp_property)
+ return nullptr;
+ return exp_property->GetValue()->GetAsProperties();
----------------
JDevlieghere wrote:
```suggestion
if (const Property *exp_property =
m_collection_sp->GetProperty(Properties::GetExperimentalSettingsName()))
return exp_property->GetValue()->GetAsProperties();
return nullptr;
```
https://github.com/llvm/llvm-project/pull/218939
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits