We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6bf6dd commit d8f6faaCopy full SHA for d8f6faa
lldb/include/lldb/Target/Target.h
@@ -568,7 +568,9 @@ class EvaluateExpressionOptions {
568
569
bool GetPreparePlaygroundStubFunctions() const { return m_prepare_playground_stub_functions; }
570
571
- void SetDisableAvailability() { m_disable_availability = true; }
+ void SetDisableAvailability(bool disable = true) {
572
+ m_disable_availability = disable;
573
+ }
574
575
bool GetDisableAvailability() const { return m_disable_availability; }
576
0 commit comments