diff options
Diffstat (limited to 'lldb/scripts/Python/interface/SBDeclaration.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBDeclaration.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBDeclaration.i b/lldb/scripts/Python/interface/SBDeclaration.i index a3709aef9e1..87e2f8ec670 100644 --- a/lldb/scripts/Python/interface/SBDeclaration.i +++ b/lldb/scripts/Python/interface/SBDeclaration.i @@ -46,6 +46,12 @@ namespace lldb { void SetColumn (uint32_t column); + bool + operator == (const lldb::SBDeclaration &rhs) const; + + bool + operator != (const lldb::SBDeclaration &rhs) const; + %pythoncode %{ __swig_getmethods__["file"] = GetFileSpec if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''') |