diff options
-rw-r--r-- | share/qtcreator/debugger/lldbbridge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/lldbbridge.py b/share/qtcreator/debugger/lldbbridge.py index b7c24b6a0d..5184c102c6 100644 --- a/share/qtcreator/debugger/lldbbridge.py +++ b/share/qtcreator/debugger/lldbbridge.py @@ -69,7 +69,7 @@ Value = lldb.SBValue def impl_SBValue__add__(self, offset): if self.GetType().IsPointerType(): - if isinstance(offset, int): + if isinstance(offset, int) or isinstance(offset, long): pass else: offset = offset.GetValueAsSigned() |