We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe8fa8 commit ba95907Copy full SHA for ba95907
gnatdbg/utils.py
@@ -80,6 +80,9 @@ def coerce_array(array_value):
80
If it's anything else, raise a ValueError.
81
"""
82
array_value = strip_typedefs(array_value)
83
+ if array_value.type.code == gdb.TYPE_CODE_REF:
84
+ array_value = array_value.referenced_value()
85
+ array_value = strip_typedefs(array_value)
86
87
if (
88
array_value.type.code == gdb.TYPE_CODE_STRUCT
0 commit comments