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 a8ea150 commit 06e8a3aCopy full SHA for 06e8a3a
gdb/python/lib/gdb/printing.py
@@ -271,6 +271,7 @@ def __call__(self, val):
271
272
class NoOpScalarPrinter:
273
"""A no-op pretty printer that wraps a scalar value."""
274
+
275
def __init__(self, value):
276
self.value = value
277
@@ -280,6 +281,7 @@ def to_string(self):
280
281
282
class NoOpArrayPrinter:
283
"""A no-op pretty printer that wraps an array value."""
284
285
286
287
(low, high) = self.value.type.range()
@@ -302,6 +304,7 @@ def children(self):
302
304
303
305
class NoOpStructPrinter:
306
"""A no-op pretty printer that wraps a struct or union value."""
307
308
309
310
0 commit comments