Skip to content

Commit 180bfef

Browse files
committed
Pass fields to is_tuple_fields instead of SBValue object
1 parent cf79d03 commit 180bfef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/etc/lldb_providers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def aggregate_field_summary(valobj: SBValue, _dict) -> Generator[str, None, None
266266
if summary is None:
267267
summary = child.value
268268
if summary is None:
269-
if is_tuple_fields(child):
269+
if is_tuple_fields(child.GetType().fields):
270270
summary = TupleSummaryProvider(child, _dict)
271271
else:
272272
summary = StructSummaryProvider(child, _dict)

0 commit comments

Comments
 (0)