mirror of
https://github.com/intel/llvm.git
synced 2026-01-31 07:27:33 +08:00
[lldb] Rename SetResultIsInternal to SetSuppressPersistentResult (NFC)
Rename `SetResultIsInternal` and `GetResultIsInternal` to `SetSuppressPersistentResult` and `GetSuppressPersistentResult` respectively. Also rename `m_result_is_internal`. This matches the naming in the SB API. A separate change calls `SetSuppressPersistentResult`, where the name `SetResultIsInternal` doesn't quite fit. Differential Revision: https://reviews.llvm.org/D144042
This commit is contained in:
@@ -178,13 +178,13 @@ void SBExpressionOptions::SetGenerateDebugInfo(bool b) {
|
||||
bool SBExpressionOptions::GetSuppressPersistentResult() {
|
||||
LLDB_INSTRUMENT_VA(this);
|
||||
|
||||
return m_opaque_up->GetResultIsInternal();
|
||||
return m_opaque_up->GetSuppressPersistentResult();
|
||||
}
|
||||
|
||||
void SBExpressionOptions::SetSuppressPersistentResult(bool b) {
|
||||
LLDB_INSTRUMENT_VA(this, b);
|
||||
|
||||
return m_opaque_up->SetResultIsInternal(b);
|
||||
return m_opaque_up->SetSuppressPersistentResult(b);
|
||||
}
|
||||
|
||||
const char *SBExpressionOptions::GetPrefix() const {
|
||||
|
||||
Reference in New Issue
Block a user