diff options
Diffstat (limited to 'scripts/Python/python-swigsafecast.swig')
-rw-r--r-- | scripts/Python/python-swigsafecast.swig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/Python/python-swigsafecast.swig b/scripts/Python/python-swigsafecast.swig index ea3f21f859ad2..ffd7546323a00 100644 --- a/scripts/Python/python-swigsafecast.swig +++ b/scripts/Python/python-swigsafecast.swig @@ -115,6 +115,13 @@ SBTypeToSWIGWrapper (lldb::SBBreakpointLocation* breakpoint_location_sb) template <> PyObject* +SBTypeToSWIGWrapper (lldb::SBBreakpointName* breakpoint_name_sb) +{ + return SWIG_NewPointerObj((void *) breakpoint_name_sb, SWIGTYPE_p_lldb__SBBreakpointName, 0); +} + +template <> +PyObject* SBTypeToSWIGWrapper (lldb::SBValue* value_sb) { return SWIG_NewPointerObj((void *) value_sb, SWIGTYPE_p_lldb__SBValue, 0); |