summaryrefslogtreecommitdiff
path: root/include/lldb/Core/Address.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Core/Address.h')
-rw-r--r--include/lldb/Core/Address.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/lldb/Core/Address.h b/include/lldb/Core/Address.h
index da7cc5c03d38..322019395ae7 100644
--- a/include/lldb/Core/Address.h
+++ b/include/lldb/Core/Address.h
@@ -534,6 +534,16 @@ public:
bool
CalculateSymbolContextLineEntry (LineEntry &line_entry) const;
+ //------------------------------------------------------------------
+ // Returns true if the section should be valid, but isn't because
+ // the shared pointer to the section can't be reconstructed from
+ // a weak pointer that contains a valid weak reference to a section.
+ // Returns false if the section weak pointer has no reference to
+ // a section, or if the section is still valid
+ //------------------------------------------------------------------
+ bool
+ SectionWasDeleted() const;
+
protected:
//------------------------------------------------------------------
// Member variables.
@@ -550,7 +560,7 @@ protected:
// have a valid section.
//------------------------------------------------------------------
bool
- SectionWasDeleted() const;
+ SectionWasDeletedPrivate() const;
};