Fix: Tools: add missing display hint

This commit is contained in:
Jacques Lucke
2024-08-16 17:14:37 +02:00
parent 4b71496f56
commit 42ad0a754a

View File

@@ -330,6 +330,9 @@ class IndexRangePrinter:
return "Size: 0"
return f"Size: {size}, [{start} - {start + size - 1}]"
def display_hint(self):
return None
class IndexMaskPrinter:
def __init__(self, value: gdb.Value):