We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e88defe commit 04baf25Copy full SHA for 04baf25
src/etc/gdb_rust_pretty_printing.py
@@ -70,6 +70,8 @@ def get_child_at_index(self, index):
70
return child
71
72
def as_integer(self):
73
+ if self.gdb_val.type.code == gdb.TYPE_CODE_PTR:
74
+ return int(str(self.gdb_val), 0)
75
return int(self.gdb_val)
76
77
def get_wrapped_value(self):
0 commit comments