================
@@ -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);
----------------
kuilpd wrote:

Thanks for noticing! Copied another setter as an example, many of them do this 
as well for some reason.

https://github.com/llvm/llvm-project/pull/222192
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to