diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBSection.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBSection.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBSection.i b/lldb/scripts/Python/interface/SBSection.i index 94b5800e1bd..cf41bdf2038 100644 --- a/lldb/scripts/Python/interface/SBSection.i +++ b/lldb/scripts/Python/interface/SBSection.i @@ -90,6 +90,12 @@ public: bool GetDescription (lldb::SBStream &description); + bool + operator == (const lldb::SBSection &rhs); + + bool + operator != (const lldb::SBSection &rhs); + %pythoncode %{ def get_addr(self): return SBAddress(self, 0) |