Skip to content
Snippets Groups Projects
Commit 6c673a04 authored by hjk's avatar hjk
Browse files

Debugger: Fix std::deque dumper with LLDB


Change-Id: Idd3547396384fe5b421c4b601b52476a23cdfa89
Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
parent 9a57a41a
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ def qdump__std__deque(d, value):
for i in d.childRange():
d.putSubItem(i, pcur.dereference())
pcur += 1
if pcur == plast:
if toInteger(pcur) == toInteger(plast):
newnode = pnode + 1
pnode = newnode
pfirst = newnode.dereference()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment