brintos

brintos / llvm-project-archived public Read only

0
0
Text · 262 B · 3a7916e Raw
11 lines · plain
1%extend lldb::SBBroadcaster {2#ifdef SWIGPYTHON3    %pythoncode%{4    # operator== is a free function, which swig does not handle, so we inject5    # our own equality operator here6    def __eq__(self, other):7      return not self.__ne__(other)8    %}9#endif10}11