================
@@ -301,6 +301,18 @@ SBError
SBExpressionOptions::SetBooleanLanguageOption(const char *option_name,
return error;
}
+bool SBExpressionOptions::GetTryDILFirst() {
+ LLDB_INSTRUMENT_VA(this);
+
+ return m_opaque_up->GetTryDILFirst();
+}
+
+void SBExpressionOptions::SetTryDILFirst(bool b) {
+ LLDB_INSTRUMENT_VA(this, b);
+
+ return m_opaque_up->SetTryDILFirst(b);
----------------
cmtice wrote:
Not sure if "return" here makes sense, since it's not actually returning a
value.
https://github.com/llvm/llvm-project/pull/222192
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits