[NFC][Coroutines] Use structured binding with llvm::enumerate in CoroSplit (#116879)
[llvm-project.git] / lldb / bindings / interface / SBBreakpointNameExtensions.i
blob2cd47a4a322386231675018af9911a3c04d820e4
1 STRING_EXTENSION_OUTSIDE(SBBreakpointName)
3 %extend lldb::SBBreakpointName {
4 #ifdef SWIGPYTHON
5 %pythoncode%{
6 # operator== is a free function, which swig does not handle, so we inject
7 # our own equality operator here
8 def __eq__(self, other):
9 return not self.__ne__(other)
11 #endif