Skip to content
Snippets Groups Projects
Commit 4ad3a956 authored by Orgad Shaneh's avatar Orgad Shaneh Committed by hjk
Browse files

Dumper: Fix dumping of nameless symbols


... like blocks

Change-Id: Ide53fd3758b09d996e4b7d7ebe91d50a8252cd27
Reviewed-by: default avatarhjk <hjk@theqtcompany.com>
parent 9548e7ad
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,10 @@
from dumper import *
def dumpLiteral(d, value):
d.putSimpleCharArray(value["_chars"], value["_size"])
if d.isNull(value):
d.putValue("<null>")
else:
d.putSimpleCharArray(value["_chars"], value["_size"])
def qdump__Core__Id(d, value):
try:
......
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